#ifndef INCLUDED_PCRASTERDATASET #define INCLUDED_PCRASTERDATASET // Library headers. // PCRaster library headers. #ifndef INCLUDED_CSF #include "csf.h" #define INCLUDED_CSF #endif // Module headers. #include "gdal_pam.h" // namespace { // PCRasterDataset declarations. // } namespace gdal { class PCRasterDatasetTest; } // namespace { //! This class specialises the GDALDataset class for PCRaster datasets. /*! PCRaster raster datasets are currently formatted by the CSF 2.0 data format. A PCRasterDataset consists of one band. More info about PCRaster can be found at http://www.pcraster.nl and http://pcraster.geog.uu.nl Additional documentation about this driver can be found in frmts/frmts_various.html of the GDAL source code distribution. */ class PCRasterDataset: public GDALPamDataset { friend class gdal::PCRasterDatasetTest; public: static GDALDataset* open (GDALOpenInfo* info); static GDALDataset* createCopy (char const* filename, GDALDataset* source, int strict, char** options, GDALProgressFunc progress, void* progressData); private: //! CSF map structure. MAP* d_map; //! Left coordinate of raster. double d_west; //! Top coordinate of raster. double d_north; //! Cell size. double d_cellSize; //! Cell representation. CSF_CR d_cellRepresentation; //! Value scale. CSF_VS d_valueScale; //! No data value. double d_missingValue; //! Assignment operator. NOT IMPLEMENTED. PCRasterDataset& operator= (const PCRasterDataset&); //! Copy constructor. NOT IMPLEMENTED. PCRasterDataset (const PCRasterDataset&); public: //---------------------------------------------------------------------------- // CREATORS //---------------------------------------------------------------------------- PCRasterDataset (MAP* map); /* virtual */ ~PCRasterDataset (); //---------------------------------------------------------------------------- // MANIPULATORS //---------------------------------------------------------------------------- //---------------------------------------------------------------------------- // ACCESSORS //---------------------------------------------------------------------------- MAP* map () const; CPLErr GetGeoTransform (double* transform); CSF_CR cellRepresentation () const; CSF_VS valueScale () const; double missingValue () const; }; //------------------------------------------------------------------------------ // INLINE FUNCTIONS //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // FREE OPERATORS //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // FREE FUNCTIONS //------------------------------------------------------------------------------ // } // namespace #endif