HydroCouple
2.0.0
HydroCouple Interface Definitions
|
A Raster spatial feature. More...
#include <hydrocouplespatial.h>
Public Types | |
enum | RasterDataType { Unknown , Byte , UInt16 , Int16 , UInt32 , Int32 , Float32 , Float64 , CInt16 , CInt32 , CFloat32 , CFloat64 } |
The data type associated with a raster. More... | |
Public Member Functions | |
virtual | ~IRaster ()=0 |
IRaster destructor. More... | |
virtual int | xSize () const =0 |
Number of pixels in the x direction. More... | |
virtual int | ySize () const =0 |
Number of pixels in y direction. More... | |
virtual int | rasterBandCount () const =0 |
Number of raster bands. More... | |
virtual void | addRasterBand (RasterDataType dataType)=0 |
Adds a new IRasterBand. More... | |
virtual ISpatialReferenceSystem * | spatialReferenceSystem () const =0 |
The ISpatialReferenceSystem represents the spatial reference system of goemetric object. More... | |
virtual void | geoTransformation (double *transformationMatrix)=0 |
Fetches the affine transformation coefficients. It is an array of size 6. More... | |
virtual IRasterBand * | getRasterBand (int bandIndex) const =0 |
Gets the IRasterBand for the band with index bandIndex. More... | |
Public Member Functions inherited from HydroCouple::IIdentity | |
virtual | ~IIdentity ()=0 |
IIdentity::~IIdentity is a virtual destructor. More... | |
virtual string | id () const =0 |
Gets a unique identifier for the entity. More... | |
Public Member Functions inherited from HydroCouple::IDescription | |
virtual | ~IDescription ()=0 |
IDescription::~IDescription is a virtual destructor. More... | |
virtual string | caption () const =0 |
Gets caption for the entity. More... | |
virtual void | setCaption (const string &caption)=0 |
Sets caption for the entity. More... | |
virtual string | description () const =0 |
Gets additional descriptive information for the entity. More... | |
virtual void | setDescription (const string &description)=0 |
Gets additional descriptive information for the entity. More... | |
Public Member Functions inherited from HydroCouple::IPropertyChanged | |
virtual | ~IPropertyChanged ()=0 |
IPropertyChanged::~IPropertyChanged is a virtual destructor. More... | |
virtual void | registerPropertyChangedListener (const function< void(const any &, const string &)> &propertyChangedListener)=0 |
IPropertyChanged::registerPropertyChangedListener() registers a listener to be called when a property of an object changes. More... | |
virtual void | deRegisterPropertyChangedListener (const function< void(const any &, const string &propertyName)> &propertyChangedListener)=0 |
IPropertyChanged::deRegisterPropertyChangedListener() deregisters a listener that is called when a property of an object changes. More... | |
A Raster spatial feature.
The data type associated with a raster.
|
pure virtual |
IRaster destructor.
|
pure virtual |
Adds a new IRasterBand.
|
pure virtual |
Fetches the affine transformation coefficients. It is an array of size 6.
Fetches the coefficients for transforming between pixel/line (P,L) raster space, and projection coordinates (Xp,Yp) space. Xp = transformationMatrix[0] + P*transformationMatrix[1] + L*transformationMatrix[2]; Yp = transformationMatrix[3] + P*transformationMatrix[4] + L*transformationMatrix[5]; In a north up image, transformationMatrix[1] is the pixel width, and transformationMatrix[5] is the pixel height. The upper left corner of the upper left pixel is at position (transformationMatrix[0],transformationMatrix[3]).
|
pure virtual |
Gets the IRasterBand for the band with index bandIndex.
|
pure virtual |
Number of raster bands.
|
pure virtual |
The ISpatialReferenceSystem represents the spatial reference system of goemetric object.
|
pure virtual |
Number of pixels in the x direction.
|
pure virtual |
Number of pixels in y direction.