/usr/include/vtk-6.3/vtkGDALRasterReader.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkGDALRasterReader.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 vtkGDALRasterReader - Read raster file formats using GDAL.
// .SECTION Description
// vtkGDALRasterReader is a source object that reads raster files and uses
// GDAL as the underlying library for the task. GDAL is required for this
// reader. The output of the reader is a vtkUniformGrid instead of vtkImageData
// to support blanking.
//
//
// .SECTION See Also
// vtkUniformGrid, vtkImageData
#ifndef vtkGDALRasterReader_h
#define vtkGDALRasterReader_h
#include <vtkImageReader2.h>
#include <vtkIOGDALModule.h> // For export macro
// C++ includes
#include <string> // string is required
#include <vector> // vector is required
class VTKIOGDAL_EXPORT vtkGDALRasterReader : public vtkImageReader2
{
public:
static vtkGDALRasterReader* New();
vtkTypeMacro(vtkGDALRasterReader, vtkImageReader2);
void PrintSelf(ostream& os, vtkIndent indent);
vtkGDALRasterReader();
virtual ~vtkGDALRasterReader();
// Description:
// Set input file name
vtkSetStringMacro(FileName);
// Get input file name
vtkGetStringMacro(FileName);
// Description:
// Return proj4 spatial reference
const char* GetProjectionString() const;
// Description:
// Return geo-referenced corner points (Upper left,
// lower left, lower right, upper right)
const double* GetGeoCornerPoints();
// Description:
// Set desired width and height of the image
vtkSetVector2Macro(TargetDimensions, int);
vtkGetVector2Macro(TargetDimensions, int);
// Description:
// Get raster width and heigth
vtkGetVector2Macro(RasterDimensions, int);
//BTX
// Description:
// Return metadata as reported by GDAL
const std::vector<std::string>& GetMetaData();
//ETX
// Description:
// Return the invalid value for a pixel (for blanking purposes)
double GetInvalidValue();
//BTX
// Description:
// Return domain metadata
std::vector<std::string> GetDomainMetaData(const std::string& domain);
//ETX
// Description:
// Return driver name which was used to read the current data
const std::string& GetDriverShortName();
const std::string& GetDriverLongName();
protected:
virtual int RequestData(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
virtual int RequestInformation(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
virtual int FillOutputPortInformation(int port,
vtkInformation* info);
protected:
int TargetDimensions[2];
int RasterDimensions[2];
std::string Projection;
std::string DomainMetaData;
std::string DriverShortName;
std::string DriverLongName;
std::vector<std::string> Domains;
std::vector<std::string> MetaData;
class vtkGDALRasterReaderInternal;
vtkGDALRasterReaderInternal* Implementation;
private:
vtkGDALRasterReader(const vtkGDALRasterReader&); // Not implemented.
void operator=(const vtkGDALRasterReader&); // Not implemented
};
#endif // vtkGDALRasterReader_h
|