/usr/include/vtk-6.2/vtkDEMReader.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkDEMReader.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkDEMReader - read a digital elevation model (DEM) file
// .SECTION Description
// vtkDEMReader reads digital elevation files and creates image data.
// Digital elevation files are produced by the
// <A HREF="http://www.usgs.gov">US Geological Survey</A>.
// A complete description of the DEM file is located at the USGS site.
// The reader reads the entire dem file and create a vtkImageData that
// contains a single scalar component that is the elevation in meters.
// The spacing is also expressed in meters. A number of get methods
// provide access to fields on the header.
#ifndef vtkDEMReader_h
#define vtkDEMReader_h
#include "vtkIOImageModule.h" // For export macro
#include "vtkImageAlgorithm.h"
class VTKIOIMAGE_EXPORT vtkDEMReader : public vtkImageAlgorithm
{
public:
static vtkDEMReader *New();
vtkTypeMacro(vtkDEMReader,vtkImageAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Specify file name of Digital Elevation Model (DEM) file
vtkSetStringMacro(FileName);
vtkGetStringMacro(FileName);
//BTX
enum {REFERENCE_SEA_LEVEL=0,REFERENCE_ELEVATION_BOUNDS};
//ETX
// Description:
// Specify the elevation origin to use. By default, the elevation origin
// is equal to ElevationBounds[0]. A more convenient origin is to use sea
// level (i.e., a value of 0.0).
vtkSetClampMacro(ElevationReference,int,REFERENCE_SEA_LEVEL,
REFERENCE_ELEVATION_BOUNDS);
vtkGetMacro(ElevationReference,int);
void SetElevationReferenceToSeaLevel()
{this->SetElevationReference(REFERENCE_SEA_LEVEL);}
void SetElevationReferenceToElevationBounds()
{this->SetElevationReference(REFERENCE_ELEVATION_BOUNDS);}
const char *GetElevationReferenceAsString(void);
// Description:
// An ASCII description of the map
vtkGetStringMacro(MapLabel);
// Description:
// Code 1=DEM-1, 2=DEM_2, ...
vtkGetMacro(DEMLevel,int);
// Description:
// Code 1=regular, 2=random, reserved for future use
vtkGetMacro(ElevationPattern, int);
// Description:
// Ground planimetric reference system
vtkGetMacro(GroundSystem, int);
// Description:
// Zone in ground planimetric reference system
vtkGetMacro(GroundZone, int);
// Description:
// Map Projection parameters. All are zero.
vtkGetVectorMacro(ProjectionParameters,float,15);
// Description:
// Defining unit of measure for ground planimetric coordinates throughout
// the file. 0 = radians, 1 = feet, 2 = meters, 3 = arc-seconds.
vtkGetMacro(PlaneUnitOfMeasure, int);
// Description:
// Defining unit of measure for elevation coordinates throughout
// the file. 1 = feet, 2 = meters
vtkGetMacro(ElevationUnitOfMeasure, int);
// Description:
// Number of sides in the polygon which defines the coverage of
// the DEM file. Set to 4.
vtkGetMacro(PolygonSize, int);
// Description:
// Minimum and maximum elevation for the DEM. The units in the file
// are in ElevationUnitOfMeasure. This class converts them to meters.
vtkGetVectorMacro(ElevationBounds,float,2);
// Description:
// Counterclockwise angle (in radians) from the primary axis of the planimetric
// reference to the primary axis of the DEM local reference system.
// IGNORED BY THIS IMPLEMENTATION.
vtkGetMacro(LocalRotation, float);
// Description:
// Accuracy code for elevations. 0=unknown accuracy
vtkGetMacro(AccuracyCode, int);
// Description:
// DEM spatial resolution for x,y,z. Values are expressed in units of resolution.
// Since elevations are read as integers, this permits fractional elevations.
vtkGetVectorMacro(SpatialResolution,float,3);
// Description:
// The number of rows and columns in the DEM.
vtkGetVectorMacro(ProfileDimension,int,2);
// Description:
// Reads the DEM Type A record to compute the extent, origin and
// spacing of the image data. The number of scalar components is set
// to 1 and the output scalar type is VTK_FLOAT.
virtual int RequestInformation (vtkInformation *, vtkInformationVector **,
vtkInformationVector *);
protected:
vtkDEMReader();
~vtkDEMReader();
vtkTimeStamp ReadHeaderTime;
int NumberOfColumns;
int NumberOfRows;
int WholeExtent[6];
char *FileName;
char MapLabel[145];
int DEMLevel;
int ElevationPattern;
int GroundSystem;
int GroundZone;
float ProjectionParameters[15];
int PlaneUnitOfMeasure;
int ElevationUnitOfMeasure;
int PolygonSize;
float GroundCoords[4][2];
float ElevationBounds[2];
float LocalRotation;
int AccuracyCode;
float SpatialResolution[3];
int ProfileDimension[2];
int ProfileSeekOffset;
int ElevationReference;
void ComputeExtentOriginAndSpacing (int extent[6],
double origin[6],
double spacing[6]);
int ReadTypeARecord ();
int ReadProfiles (vtkImageData *data);
virtual int RequestData( vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
private:
vtkDEMReader(const vtkDEMReader&); // Not implemented.
void operator=(const vtkDEMReader&); // Not implemented.
};
#endif
|