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
|
/******************************************************************************
* $Id: pcrasterdataset.h 13149 2007-11-29 15:08:00Z warmerdam $
*
* Project: PCRaster Integration
* Purpose: PCRaster CSF 2.0 raster file driver declarations.
* Author: Kor de Jong, k.dejong at geog.uu.nl
*
******************************************************************************
* Copyright (c) 2004, Kor de Jong
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#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
|