VTK  9.2.6
vtkGDALRasterReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGDALRasterReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
37 #ifndef vtkGDALRasterReader_h
38 #define vtkGDALRasterReader_h
39 
40 #include <vtkIOGDALModule.h> // For export macro
41 #include <vtkImageReader2.h>
42 
43 // C++ includes
44 #include <string> // string is required
45 #include <vector> // vector is required
46 
47 class VTKIOGDAL_EXPORT vtkGDALRasterReader : public vtkImageReader2
48 {
49 public:
50  static vtkGDALRasterReader* New();
52  void PrintSelf(ostream& os, vtkIndent indent) override;
53 
55  ~vtkGDALRasterReader() override;
56 
60  int CanReadFile(VTK_FILEPATH const char* fname) override;
61 
65  const char* GetProjectionString() const;
66 
70  const char* GetProjectionWKT() const { return this->ProjectionWKT.c_str(); }
71 
76  const double* GetGeoCornerPoints();
77 
83  vtkSetMacro(CollateBands, bool);
84  vtkGetMacro(CollateBands, bool);
85  vtkBooleanMacro(CollateBands, bool);
86 
88 
91  vtkSetVector2Macro(TargetDimensions, int);
92  vtkGetVector2Macro(TargetDimensions, int);
94 
96 
99  int* GetRasterDimensions();
101 
105  const std::vector<std::string>& GetMetaData();
106 
113  double GetInvalidValue(size_t bandIndex = 0, int* hasNoData = nullptr);
114 
118  std::vector<std::string> GetDomainMetaData(const std::string& domain);
119 
121 
124  const std::string& GetDriverShortName();
125  const std::string& GetDriverLongName();
127 
131  vtkIdType GetNumberOfCells();
132 
134 
138  int GetNumberOfCellArrays();
139  const char* GetCellArrayName(int index);
140  int GetCellArrayStatus(const char* name);
141  void SetCellArrayStatus(const char* name, int status);
142  void DisableAllCellArrays();
143  void EnableAllCellArrays();
145 
146 protected:
147  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
148  vtkInformationVector* outputVector) override;
149 
150  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
151  vtkInformationVector* outputVector) override;
152 
154 
155 protected:
156  int TargetDimensions[2];
162  std::vector<std::string> Domains;
163  std::vector<std::string> MetaData;
165 
166  class vtkGDALRasterReaderInternal;
167  vtkGDALRasterReaderInternal* Impl;
168 
169 private:
170  vtkGDALRasterReader(const vtkGDALRasterReader&) = delete;
171  void operator=(const vtkGDALRasterReader&) = delete;
172 };
173 
174 #endif // vtkGDALRasterReader_h
static vtkImageReader2 * New()
Store vtkAlgorithm input/output information.
virtual int CanReadFile(VTK_FILEPATH const char *vtkNotUsed(fname))
Return non zero if the reader can read the given file name.
int vtkIdType
Definition: vtkType.h:332
std::vector< std::string > Domains
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGDALRasterReaderInternal * Impl
const char * GetProjectionWKT() const
Returns WKT spatial reference.
Superclass of binary file readers.
#define VTK_FILEPATH
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int FillOutputPortInformation(int port, vtkInformation *info) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
Store zero or more vtkInformation instances.
std::vector< std::string > MetaData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called in response to a REQUEST_DATA request from the executive.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Read raster file formats using GDAL.