/usr/include/terralib/kernel/TeRasterParams.h is in libterralib-dev 4.3.0+dfsg.2-4build2.
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 | /************************************************************************************
TerraLib - a library for developing GIS applications.
Copyright © 2001-2007 INPE and Tecgraf/PUC-Rio.
This code is part of the TerraLib library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
You should have received a copy of the GNU Lesser General Public
License along with this library.
The authors reassure the license terms regarding the warranties.
They specifically disclaim any warranties, including, but not limited to,
the implied warranties of merchantability and fitness for a particular purpose.
The library provided hereunder is on an "as is" basis, and the authors have no
obligation to provide maintenance, support, updates, enhancements, or modifications.
In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct,
indirect, special, incidental, or consequential damages arising out of the use
of this library and its documentation.
*************************************************************************************/
/*! \file TeRasterParams.h
\brief This file contains definitions about parameters of a raster structure
*/
#ifndef __TERRALIB_INTERNAL_RASTERPARAMS_H
#define __TERRALIB_INTERNAL_RASTERPARAMS_H
#include "TeProjection.h"
#include "TeBox.h"
#include "TeDataTypes.h"
#include "TeTime.h"
#include <string>
#include <list>
#include <vector>
using namespace std;
class TeDatabase;
//! A class to handle the parameters set associated with a raster data
/*!
This class is a data structure to store and manipulate a set of parameters and definitions that characterizes
a raster data. It contains parameters relative to storaging, geographical or interpretation aspects.
Not all parameters are valid, or make sense, for all raster data.
Most parameters are public and can be accessed directly. The private ones should be acessed
through the methods provided.
\sa TeRaster
*/
class TL_DLL TeRasterParams
{
public:
//! Decoder parameter in a form <param_name,param_value> (This parameter is specific for each decoder, please consult each TeDecoder inherited class for reference).
typedef std::pair< std::string, std::string > DecoderParamT;
//! Pixels interleaving mode: used by rasters in memory and files in raw formats
enum TeRasterInterLeavingMode
{
TePerPixel, // BIP - Band Interleaved by Pixel
TePerLine, // BIL - Band Interleaved by Line
TePerBand // BSQ - Band Sequential
};
//! Photometric interpretation of a raster data
enum TeRasterPhotometricInterpretation
{ TeUnknown, TePallete, TeMultiBand, TeRGB };
//! Status of a raster data, in terms of reading and writting possibilities
enum TeRasterStatus
{ TeNotReady, TeReadyToRead, TeReadyToWrite };
//! Compression modes of a raster data
enum TeRasterCompressionMode
{ TeNoCompression, TeZLib, TeJpeg, TeTiffCompression };
//! Tiling type modes to store raster data in a TerraLib database
enum TeRasterTilingType
{ TeExpansible=1, TeNoExpansible=2 };
//! Default contructor
TeRasterParams () :
nlines_(0),
ncols_(0),
resx_(1),
resy_(1),
swap_(false),
useDummy_(false),
mode_('r'),
status_(TeRasterParams::TeNotReady),
resolution_(1),
subBand_(0),
offset_(0),
tiling_type_(TeRasterParams::TeExpansible),
blockHeight_(0),
blockWidth_(0),
nTilesInMemory_(0),
blockId_(""),
decoderIdentifier_(""),
database_ (0),
layerId_(-1),
objectId_(""),
interleaving_(TeRasterParams::TePerPixel),
lutName_(""),
dxJ_(0.0),
dxI_(0.0),
dyJ_(0.0),
dyI_(0.0),
x0_(0.0),
y0_(0.0),
box_(TeBox()),
projection_(0)
{
nbands_= 1;
nbitsperPixel_.resize(nbands_);
vmin_.resize(nbands_);
vmax_.resize(nbands_);
bands_.resize(nbands_);
bandName_.resize(nbands_);
photometric_.resize(nbands_);
dataType_.resize(nbands_);
dummy_.resize(nbands_);
compression_.resize(nbands_);
for (int i=0; i<nbands_; i++)
{
bands_[i] = i;
vmin_[i] = TeMAXFLOAT;
vmax_[i] = -TeMAXFLOAT;
dataType_[i] = TeUNSIGNEDCHAR;
photometric_[i] = TeRasterParams::TeMultiBand;
dummy_[i] = 255;
}
hasSetDummy_ = false;
}
//! Copy constructor
TeRasterParams(const TeRasterParams& other);
//! Operator=
TeRasterParams& operator=(const TeRasterParams& rhs);
//! Destructor
virtual ~TeRasterParams()
{
bands_.clear();
bandName_.clear();
vmin_.clear();
vmax_.clear();
if (!lutr_.empty())
{
lutr_.clear();
lutg_.clear();
lutb_.clear();
lutClassName_.clear();
}
photometric_.clear();
dataType_.clear();
dummy_.clear();
compression_.clear();
if (projection_)
delete projection_;
hasSetDummy_ = false;
}
/** @name Extension
* Methods to deal with the spatial extensions of a raster data
*/
//@{
//! Returns the box based on the coordinates of center of the corner elements
const TeBox& box() const
{ return box_; }
//! Returns the outline box
TeBox boundingBox() const;
//! Sets extension parameters
/*
This methods recalculates the number of lines and columns and box accordingly to
an input bounding box and X and Y resolutions
\param x1 bounding box lower left point X coordinate
\param y1 bounding box lower left point Y coordinate
\param x2 bounding box upper right point X coordinate
\param y2 bounding box upper right point Y coordinate
\param resx X resolution
\param resy Y resolution
\param lock corner of the bounding box that should be preserved
*/
void boundingBoxResolution (double x1, double y1, double x2, double y2,
double resx, double resy, TeBox::TeBoxCorner lock = TeBox::TeUPPERLEFT);
//! Sets extension parameters
/*
This methods recalculates the resolutions and box accordingly to
a given bounding box and number of lines and columns
\param x1 bounding box lower left point X coordinate
\param y1 bounding box lower left point Y coordinate
\param x2 bounding box upper right point X coordinate
\param y2 bounding box upper right point Y coordinate
\param nlines number of lines
\param ncols number of columns
\param lock corner of the bounding box that should be preserved
*/
void boundingBoxLinesColumns (double x1, double y1, double x2, double y2,
int nlines, int ncols, TeBox::TeBoxCorner lock = TeBox::TeUPPERLEFT);
//! Sets extension parameters
/*
This methods recalculates the number of lines and columns and box accordingly to
a given box and X and Y resolutions
\param x1 box lower left point X coordinate
\param y1 box lower left point Y coordinate
\param x2 box upper right point X coordinate
\param y2 box upper right point Y coordinate
\param resx X resolution
\param resy Y resolution
\param lock corner of the bounding box that should be preserved
*/
void boxResolution (double x1, double y1, double x2, double y2,
double resx, double resy, TeBox::TeBoxCorner lock = TeBox::TeUPPERLEFT);
//! Sets extension parameters
/*
This methods recalculates the resolutions and box accordingly to
a given box and number of lines and columns
\param x1 box lower left point X coordinate
\param y1 box lower left point Y coordinate
\param x2 box upper right point X coordinate
\param y2 box upper right point Y coordinate
\param nlines number of lines
\param ncols number of columns
\par Calculates X resolution and Y resolution
\param lock corner of the bounding box that should be preserved
*/
void boxLinesColumns (double x1, double y1, double x2, double y2,
int nlines, int ncols, TeBox::TeBoxCorner lock = TeBox::TeUPPERLEFT);
//! Sets extension parameters
/*
\param left lower left point X coordinate
\param top upper right point Y coordinate
\param resx X resolution
\param resy Y resolution
\param nlines number of lines
\param ncols number of columns
\param coordIsCentrePixel flag to indicate that top left coordinate is centre of pixel
*/
void topLeftResolutionSize (double left, double top, double resx, double resy, int ncol, int nlin, bool coordIsCentrePixel=true);
//! Sets extension parameters
/*
\param left lower left point X coordinate
\param lower lower left point Y coordinate
\param resx X resolution
\param resy Y resolution
\param nlines number of lines
\param ncols number of columns
\param coordIsCentrePixel flag to indicate that top left coordinate is centre of pixel
*/
void lowerLeftResolutionSize (double left, double lower, double resx, double resy, int ncol, int nlin, bool coordIsCentrePixel=true);
//! Sets default extension parameters
/*
Sets a valid bouding box, considering a resolution of 1x1 and
that the coordinate of the center of lower-left element is (0.5,0.5)
\param nlines number of lines
\param ncols number of columns
*/
void setNLinesNColumns(int nlines, int ncolumns);
//! Resizes the raster bounding box to cut it exactly in tiles of a give size
/*!
\param bb an initial bounding box
\param bWidth block width (in number of elements/pixels)
\param bHeight block height (in number of elements/pixels)
\note keeps the defined X an Y resolutions
*/
void resizeToTiling(TeBox& bb, int bWidth, int bHeight);
//@}
//! Sets the number of bands, or dimentions in a raster data
/*
\param n number of bands
\note If the required number of bands is greater than the
current number of bands, the last band characteristics
will be copied to the new defined bands.
*/
void nBands(int n);
//! Sets the projection
/*
\param proj a pointer to a terralib projection instance
A new instance of projection is created according to the parameters described by proj.
*/
void projection(TeProjection* proj);
//! Returns the projection
TeProjection* projection()
{ return projection_; }
//! Transform a coordinate from world domain to line/column domain
TeCoord2D coord2Index (const TeCoord2D& pt) const;
//! Transform a coordinate from line/column domain to world domain
TeCoord2D index2Coord (const TeCoord2D& pt) const;
int nlines_; //!< number of lines
int ncols_; //!< number of columns
double resx_, //!< horizontal resolution
resy_; //!< vertical resolution
bool swap_; //!< a flag to indicate that the values of the elements of the raster are swapped
bool useDummy_; //!< a flag to indicate that raster has dummy values
char mode_; //!< a character indicating the access mode to the raster data: 'r', 'w' or 'c'
TeRasterStatus status_; //! Status for reading and writing to raster
TeTime date_; //!< The date of the raster
/** @name Parameters variable per band
*/
//@{
vector<int> nbitsperPixel_; //!< number of bits per pixel
vector<double> vmin_; //!< minimum value
vector<double> vmax_; //!< maximum value
vector<int> bands_; //!< bands information
vector<double> dummy_; //!< no data value
vector<string> bandName_; //!< band name
vector<TeRasterPhotometricInterpretation> photometric_; //!< photometric interpretation
vector<TeRasterCompressionMode> compression_; //!< compression type
vector<TeDataType> dataType_; //!< computational size of elements
std::vector< DecoderParamT > decoderParams_; //!< Decoder parameters (This parameter is specific for each decoder, please consult each TeDecoder inherited class for reference).
//! Sets the size of the elements in a particular or in every band
/*
\param type the computational data type
\param band number of the band. Default: all bands
*/
void setDataType(TeDataType type, int band=-1);
//! Returns the size in bytes of each raster element
int elementSize(int band=0);
//! Sets the photometric type in a particular or in every band
/*
\param photom the photometric interpretation
\param band number of the band. Default: all bands
*/
void setPhotometric(TeRasterPhotometricInterpretation photom, int band=-1);
//! Sets the compression mode of each band
/*
\param cmode the compression mode
\param band number of the band. Default: all bands
*/
void setCompressionMode(TeRasterCompressionMode cmode, int band=-1);
//! Sets the dummy value in each band
/*
\param dummy dummy value
\param band number of the band. Default: all bands
*/
void setDummy(double dummy, int band=-1);
//! Sets the band name in each band
/*
\param name band name
\param band number of the band. No default value
*/
void setBandName(string name, int band);
//@}
/** @name Resolution level parameters
* Used when raster has different levels of resolution
*/
//@{
int resolution_; //! resolution level
int subBand_; //! sub band identification
//@}
/** @name File parameters
* Used when raster is stored in files
*/
//@{
string fileName_; //!< name of a raster file
int offset_; //!< offset
//@}
/** @name Tilling parameters
*/
//@{
TeRasterTilingType tiling_type_; //!< raster tiling mode
int blockHeight_; //!< tiles height
int blockWidth_; //!< tiles width
int nTilesInMemory_; //!< number of tiles to be kept in memory
string blockId_; //!< tiles identification
//@}
string decoderIdentifier_; //!< decoder associated to his raster
//! Returns the identifier of the decoder associated to the raster
const string& decName() const
{ return decoderIdentifier_; }
/** @name Tilling parameters
*/
//@{
TeDatabase* database_; //!< pointer to a TerraLib database where the raster is stored
int layerId_; //!< identification of the layer that contains the raster
string objectId_; //!< identification of an object associated to this raster geometry
//@}
TeRasterInterLeavingMode interleaving_; //!< interleaving mode
/** @name Raster pallete
* Look up table associated to a raster
*/
//@{
string lutName_; //!< name of a lut table associated to this raster
vector<unsigned short> lutr_; //!< red pallete
vector<unsigned short> lutg_; //!< green pallete
vector<unsigned short> lutb_; //!< blue pallete
vector<string> lutClassName_; //!< class name
//! Returns the name of the lut
const string& lutName()
{ return lutName_; }
//@}
/** @name Navigation parameters
* Parameters associated to translation/rotation of the positioning of the raster data
*/
//@{
double dxJ_; //!< X offset due to increase of one column position
double dxI_; //!< X offset due to increase of one line position
double dyJ_; //!< Y offset due to increase of one column position
double dyI_; //!< Y offset due to increase of one line position
double x0_; //!< X coordinate of the upper left raster element
double y0_; //!< Y coordinate of the upper left raster element
/** Sets the navigation parameters
\param nwf the navigation parameters set
\note this method should be called after the number of lines and columns has been set
\verbatim
The Navigation parameters describe a transformation from column/line domain (i,j)
to geographical world (x,y), so that:
| x = x0 + i*dxJ + j*dxI
| y = y0 + i*dyJ + j*dyI
and:
|i = (dyI*(x-x0) - dxI*(y-y0)) / (dxJ*dyI-dyJ*dxI)
|j = (dyJ*(x-x0) - dxJ*(y-y0)) / (dyJ*dxI-dxJ*dyI)
where:
nwf[0] = dxJ : the offset in the X direction along each column
nwf[1] = dxI : the offset in the X direction along each line
nwf[2] = dyJ : the offset in the Y direction along each column
nwf[3] = dyI : the offset in the Y direction along each line
nwf[4] = x0 : X coordinate of the center of the upper left raster element
nwf[5] = y0 : Y coordinate of the center of the upper left raster element
\endverbatim
*/
void setNavigationParameters(const vector<double>& nwf);
/** Returns the georeferecing parameters
\param nwf vector of double to return the navigation parameters set
\verbatim
The Navigation parameters describe a transformation from column/line domain (i,j)
to geographical world (x,y), so that:
| x = x0 + i*dxJ + j*dxI
| y = y0 + i*dyJ + j*dyI
and:
|i = (dyI*(x-x0) - dxI*(y-y0)) / (dxJ*dyI-dyJ*dxI)
|j = (dyJ*(x-x0) - dxJ*(y-y0)) / (dyJ*dxI-dxJ*dyI)
where:
nwf[0] = dxJ : the offset in the X direction along each column
nwf[1] = dxI : the offset in the X direction along each line
nwf[2] = dyJ : the offset in the Y direction along each column
nwf[3] = dyI : the offset in the Y direction along each line
nwf[4] = x0 : X coordinate of the center of the upper left raster element
nwf[5] = y0 : Y coordinate of the center of the upper left raster element
\endverbatim
*/
void getNavigationParameters(vector<double>& nwf);
//@}
//! Returns the number of bands of the raster
int nBands() const
{ return nbands_; }
//! Saves the parameters in a ASCII File, in TerraLib format
void writeParametersFile();
//! Reads the parameters described in a ASCII File, in TerraLib format
void readParametersFile();
//! String that contains any error or warning message that raster manipulation might have detected
string errorMessage_;
private:
int nbands_; //!< number of bands
TeBox box_; //!< raster box in center of pixel coordinates
TeProjection* projection_; //!< raster projection
bool hasSetDummy_;
};
#endif
|