te::gm::Envelope Class Reference

An Envelope defines a 2D rectangular region. More...

#include <Envelope.h>

Public Member Functions

Basic Envelope Methods

Basic Envelope methods.

 Envelope ()
 It constructs an envelope with invalid coordinates. More...
 
 Envelope (const double &llx, const double &lly, const double &urx, const double &ury)
 Constructor. More...
 
 Envelope (const std::vector< double > &vectd)
 Constructor. More...
 
 Envelope (const Envelope &rhs)
 Copy constructor. More...
 
void init (const double &llx, const double &lly, const double &urx, const double &ury)
 It initializes (sets) the envelope bounds. More...
 
const double & getLowerLeftX () const
 It returns a constant reference to the x coordinate of the lower left corner. More...
 
double & getLowerLeftX ()
 It returns a constant reference to the x coordinate of the lower left corner. More...
 
const double & getLowerLeftY () const
 It returns a constant refernce to the y coordinate of the lower left corner. More...
 
double & getLowerLeftY ()
 It returns a constant refernce to the y coordinate of the lower left corner. More...
 
const double & getUpperRightX () const
 It returns a constant refernce to the x coordinate of the upper right corner. More...
 
double & getUpperRightX ()
 It returns a constant refernce to the y coordinate of the upper right corner. More...
 
const double & getUpperRightY () const
 It returns a constant refernce to the x coordinate of the upper right corner. More...
 
double & getUpperRightY ()
 It returns a constant refernce to the y coordinate of the upper right corner. More...
 
Coord2D getLowerLeft () const
 It returns the lower left coordinate of the envelope. More...
 
Coord2D getUpperRight () const
 It returns the upper right coordinate of the envelope. More...
 
Coord2D getCenter () const
 It returns the rectangle's center coordinate. More...
 
void makeInvalid ()
 It will invalidated the envelope. More...
 
bool isValid () const
 It tells if the rectangle is valid or not. More...
 
double getWidth () const
 It returns the envelope width. More...
 
double getHeight () const
 It returns the envelope height. More...
 
double getArea () const
 It returns the area of this envelope as measured in the spatial reference system of it. More...
 
Envelope Operators

Overloaded operators for an envelope.

Envelopeoperator= (const Envelope &rhs)
 Assignment operator. More...
 
bool operator== (const Envelope &rhs) const
 Equal operator. More...
 
Spatial Operations

Methods for testing spatial relations between Envelope objects and to perform some operations over envelope type.

bool equals (const Envelope &rhs) const
 It returns true if the envelopes are "spatially equal". More...
 
bool disjoint (const Envelope &rhs) const
 It returns true if this envelope is "spatially disjoint" from rhs envelope. More...
 
bool intersects (const Envelope &rhs) const
 It returns true if the envelopes "spatially intersects". More...
 
bool touches (const Envelope &rhs) const
 It returns true if the envelopes "spatially touches". More...
 
bool within (const Envelope &rhs) const
 It returns true if this envelope is "spatially within" the rhs envelope. More...
 
bool contains (const Envelope &rhs) const
 It returns true if this envelope "spatially contains" the rhs envelope. More...
 
double distance (const Envelope &rhs) const
 It returns the shortest distance between any two points in the two envelopes. More...
 
Envelope intersection (const Envelope &rhs) const
 It returns an envelope that represents the point set intersection with another envelope. More...
 
void Union (const Envelope &rhs)
 It updates the envelop with coordinates of another envelope. More...
 
void transform (int oldsrid, int newsrid)
 It will transform the coordinates of the Envelope from the old SRS to the new one. More...
 

Public Attributes

double m_llx
 Lower left corner x-coordinate. More...
 
double m_lly
 Lower left corner y-coordinate. More...
 
double m_urx
 Upper right corner x-coordinate. More...
 
double m_ury
 Upper right corner y-coordinate. More...
 

Detailed Description

An Envelope defines a 2D rectangular region.

Definition at line 51 of file geometry/Envelope.h.

Constructor & Destructor Documentation

te::gm::Envelope::Envelope ( )
inline

It constructs an envelope with invalid coordinates.

Definition at line 350 of file geometry/Envelope.h.

Referenced by intersection().

te::gm::Envelope::Envelope ( const double &  llx,
const double &  lly,
const double &  urx,
const double &  ury 
)
inline

Constructor.

Parameters
llxLower left corner x-coordinate.
llyLower left corner y-coordinate.
urxUpper right corner x-coordinate.
uryUpper right corner y-coordinate.

Definition at line 355 of file geometry/Envelope.h.

te::gm::Envelope::Envelope ( const std::vector< double > &  vectd)
inline

Constructor.

Parameters
vectdVector of doubles representing the envelope lower left and upper right corners.

Definition at line 365 of file geometry/Envelope.h.

References d, and init().

te::gm::Envelope::Envelope ( const Envelope rhs)
inline

Copy constructor.

Parameters
rhsThe source object to copy from.

Definition at line 380 of file geometry/Envelope.h.

References init(), m_llx, m_lly, m_urx, and m_ury.

Member Function Documentation

bool te::gm::Envelope::contains ( const Envelope rhs) const
inline

It returns true if this envelope "spatially contains" the rhs envelope.

Parameters
rhsThe other envelope to be compared.
Returns
True if this envelope "spatially contains" the rhs envelope.

Definition at line 539 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by te::mnt::TINGeneration::InsertNode(), te::qt::widgets::MixtureModelWizardPage::loadMixtureModelComponents(), te::qt::widgets::PointMove::mousePressEvent(), and TsEnvelop::tcContains().

bool te::gm::Envelope::disjoint ( const Envelope rhs) const
inline

It returns true if this envelope is "spatially disjoint" from rhs envelope.

Parameters
rhsThe other envelope to be compared.
Returns
True if this envelope is "spatially disjoint" from the other envelope.

Definition at line 486 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by TsEnvelop::tcDisjoint().

double te::gm::Envelope::distance ( const Envelope rhs) const

It returns the shortest distance between any two points in the two envelopes.

Parameters
rhsThe other envelope.
Returns
The shortest distance between any two points in the two envelopes.
Note
It calculates the shortest distance in the spatial reference system of the envelopes.
If the two envelopes intersects it will return "0.0".

Definition at line 58 of file geometry/Envelope.cpp.

References dx, intersects(), m_llx, m_lly, m_urx, and m_ury.

bool te::gm::Envelope::equals ( const Envelope rhs) const
inline

It returns true if the envelopes are "spatially equal".

Parameters
rhsThe another envelope to be compared.
Returns
True if the enevlopes are "spatially equal".

Definition at line 481 of file geometry/Envelope.h.

Referenced by te::qt::widgets::FusionWizard::adjustRasters(), te::qt::af::MapDisplay::onExtentChanged(), te::rst::Grid::operator==(), TsEnvelop::tcEquals(), TsEnvelop::tcIntersection(), and TsEnvelop::tcUnion().

double te::gm::Envelope::getArea ( ) const
inline
te::gm::Coord2D te::gm::Envelope::getCenter ( ) const

It returns the rectangle's center coordinate.

Returns
The rectangle's center coordinate.

Definition at line 53 of file geometry/Envelope.cpp.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Zoom::applyZoom(), BOOST_AUTO_TEST_CASE(), te::map::QueryLayerRenderer::buildChart(), te::map::AbstractLayerRenderer::buildChart(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), te::map::CalculatePlanarZone(), CoverageSeriesExamples(), te::qt::widgets::Measure::drawPolygon(), te::qt::widgets::Selection::executeSelection(), te::edit::Repository::getFeature(), te::qt::widgets::DefaultFeatureInfoMaker::getGeometryInfo(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::edit::EditInfoTool::getInfo(), te::qt::widgets::DefaultFeatureInfoMaker::getRasterInfo(), main(), te::edit::VertexTool::mouseMoveEvent(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::widgets::PanMiddleClick::mouseReleaseEvent(), te::qt::widgets::Pan::mouseReleaseEvent(), te::qt::widgets::TiePointLocatorWidget::onAddToolButtonClicked(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::qt::af::MapDisplay::pan(), te::edit::PickFeature(), PlanarSRID(), te::edit::SnapVertex::search(), te::vp::GeometricOpMemory::SetAggregByAttribute(), te::vp::GeometricOpMemory::SetAggregObj(), and te::edit::DeletePartTool::storeFeature().

double te::gm::Envelope::getHeight ( ) const
inline

It returns the envelope height.

Returns
The envelope height.

Definition at line 452 of file geometry/Envelope.h.

References m_lly, and m_ury.

Referenced by te::qt::widgets::Zoom::applyZoom(), te::sa::KernelOperation::buildRaster(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::graph::BoxLoaderStrategy::calculateBox(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), CalculateHorizontalLines(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::checkList(), te::qt::widgets::Canvas::draw(), te::qt::widgets::ImageItem::generateRoute(), getArea(), GetCenteredBox(), te::rst::Grid::getResolutionY(), te::qt::widgets::MapDisplay::getScale(), GribExample(), te::rst::Grid::Grid(), te::mnt::CalculateGrid::Initialize(), WorldTransformer::initVariables(), te::qt::widgets::Grid::makeGeographicGrid(), te::qt::widgets::Grid::makePlanarGrid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::widgets::PanMiddleClick::mouseReleaseEvent(), te::qt::widgets::Pan::mouseReleaseEvent(), te::qt::widgets::RasterSymbolizerWidget::onHistogramToolButtonClicked(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), RasterizePolygonSet(), te::rst::Reproject(), te::mnt::Slope::run(), te::mnt::TINCalculateGrid::run(), te::sa::KernelOperation::runDataSetKernel(), te::sa::KernelOperation::runRasterKernel(), te::qt::widgets::ImageItem::setImagePosition(), te::rst::Grid::setNumberOfColumns(), te::rst::Grid::setNumberOfRows(), te::qt::widgets::MapDisplay::setScale(), TsEnvelop::tcGetWidth_Right_Area(), te::rst::TileIndexer::TileIndexer(), te::gdal::Raster::transform(), and te::rst::Raster::transform().

te::gm::Coord2D te::gm::Envelope::getLowerLeft ( ) const

It returns the lower left coordinate of the envelope.

Returns
The lower left coordinate of the envelope.

Definition at line 43 of file geometry/Envelope.cpp.

References m_llx, and m_lly.

Referenced by te::rp::ClassifierDummyStrategy::execute(), InterpolateIn(), and TsEnvelop::tcGetLowerLeftCoord2D().

const double & te::gm::Envelope::getLowerLeftX ( ) const
inline

It returns a constant reference to the x coordinate of the lower left corner.

Returns
A constant reference to the x coordinate of the lower left corner.

Definition at line 394 of file geometry/Envelope.h.

References m_llx.

Referenced by te::mem::ExpansibleRaster::addBottomLines(), te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gm::AddIntersectionPoints(), te::mem::ExpansibleRaster::addLeftColumns(), te::mem::ExpansibleRaster::addRightColumns(), te::mem::ExpansibleRaster::addTopLines(), te::qt::widgets::FusionWizard::adjustRasters(), te::qt::widgets::Zoom::applyZoom(), te::mnt::SplineInterpolationGrassMitasova::calculateGrid(), CalculateHorizontalLines(), CalculateInitialX(), CalculateVerticalLines(), te::md::MD_DataIdentification::clone(), te::mnt::CreateIsolines::connectLines(), te::mnt::TINGeneration::CreateInitialTriangles(), CreatePolygons(), te::mnt::Volume::DefLC(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::qt::widgets::DataSetDisplay::draw(), te::qt::widgets::Canvas::draw(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), ExemplifyLineIterator(), ExemplifyPointSetIterator(), ExemplifyPolygonIterator(), exportRastertoGPKG(), te::mnt::SplineInterpolationGrass::generateGrid(), te::mnt::Shadow::GenerateImage(), te::rp::GetDetailedExtent(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::wcs::Transactor::getExtent(), te::wms::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::ws::ogc::wms::GetMap(), te::ws::ogc::wms::GetMapRaster(), te::sa::SamplePointsGeneratorAbstract::getPoint(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::MapDisplay::getScale(), GribExample(), GribPolygonExample(), te::mnt::SplineInterpolationGrassMitasova::IL_grid_calc(), te::mnt::CalculateGrid::Initialize(), WorldTransformer::initVariables(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::qt::widgets::Grid::makeGeographicGrid(), te::qt::widgets::Grid::makePlanarGrid(), Mask(), te::mnt::ProfileTools::mouseReleaseEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::widgets::TrajectoryItem::paint(), te::gm::PrepareGeometriesToIntersection(), PrintTrajectoryInfo(), RasterizePolygonSet(), te::mnt::Slope::run(), te::mnt::TINCalculateGrid::run(), te::rst::Vectorizer::run(), te::md::Save(), te::qt::widgets::MapDisplay::setScale(), GAP::step4(), TsEnvelop::tcGetLowerLeftX(), Texture(), ToMeters(), te::rst::Raster::toString(), and te::rst::Raster::trim().

double & te::gm::Envelope::getLowerLeftX ( )
inline

It returns a constant reference to the x coordinate of the lower left corner.

Returns
A constant reference to the x coordinate of the lower left corner.

Definition at line 399 of file geometry/Envelope.h.

References m_llx.

const double & te::gm::Envelope::getLowerLeftY ( ) const
inline

It returns a constant refernce to the y coordinate of the lower left corner.

Returns
A constant refernce to the y coordinate of the lower left corner.

Definition at line 404 of file geometry/Envelope.h.

References m_lly.

Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gm::AddIntersectionPoints(), te::qt::widgets::FusionWizard::adjustRasters(), te::qt::widgets::Zoom::applyZoom(), te::mnt::SplineInterpolationGrassMitasova::calculateGrid(), CalculateHorizontalLines(), CalculateInitialY(), CalculateVerticalLines(), te::md::MD_DataIdentification::clone(), te::mnt::CreateIsolines::connectLines(), te::mnt::TINGeneration::CreateInitialTriangles(), CreatePolygons(), te::mnt::Volume::DefLC(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::qt::widgets::DataSetDisplay::draw(), te::qt::widgets::Canvas::draw(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), te::rp::TiePointsMosaic::execute(), ExemplifyLineIterator(), ExemplifyPointSetIterator(), ExemplifyPolygonIterator(), exportRastertoGPKG(), te::mnt::SplineInterpolationGrass::generateGrid(), te::rp::GetDetailedExtent(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::wcs::Transactor::getExtent(), te::wms::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::ws::ogc::wms::GetMap(), te::ws::ogc::wms::GetMapRaster(), te::sa::SamplePointsGeneratorAbstract::getPoint(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::MapDisplay::getScale(), te::rst::TileIndexer::getTileIndex(), GribExample(), GribPolygonExample(), WorldTransformer::initVariables(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::qt::widgets::Grid::makeGeographicGrid(), te::qt::widgets::Grid::makePlanarGrid(), Mask(), te::mnt::ProfileTools::mouseReleaseEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::widgets::TrajectoryItem::paint(), te::gm::PrepareGeometriesToIntersection(), te::rst::Vectorizer::run(), te::md::Save(), te::qt::widgets::MapDisplay::setScale(), GAP::step4(), TsEnvelop::tcGetLowerLeftY(), Texture(), ToMeters(), te::rst::Raster::toString(), and te::rst::Raster::trim().

double & te::gm::Envelope::getLowerLeftY ( )
inline

It returns a constant refernce to the y coordinate of the lower left corner.

Returns
A constant refernce to the y coordinate of the lower left corner.

Definition at line 409 of file geometry/Envelope.h.

References m_lly.

te::gm::Coord2D te::gm::Envelope::getUpperRight ( ) const

It returns the upper right coordinate of the envelope.

Returns
The upper right coordinate of the envelope.

Definition at line 48 of file geometry/Envelope.cpp.

References m_urx, and m_ury.

Referenced by te::rp::ClassifierDummyStrategy::execute(), InterpolateIn(), and TsEnvelop::tcGetUpperRightCoord2D().

const double & te::gm::Envelope::getUpperRightX ( ) const
inline

It returns a constant refernce to the x coordinate of the upper right corner.

Returns
A constant refernce to the x coordinate of the upper right corner.

Definition at line 414 of file geometry/Envelope.h.

References m_urx.

Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gm::AddIntersectionPoints(), te::qt::widgets::FusionWizard::adjustRasters(), te::mnt::SplineInterpolationGrassMitasova::calculateGrid(), CalculateHorizontalLines(), CalculateVerticalLines(), te::md::MD_DataIdentification::clone(), te::mnt::CreateIsolines::connectLines(), te::mnt::TINGeneration::CreateInitialTriangles(), CreatePolygons(), te::mnt::Volume::DefLC(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::qt::widgets::DataSetDisplay::draw(), te::qt::widgets::Canvas::draw(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), te::rp::TiePointsMosaic::execute(), ExemplifyLineIterator(), ExemplifyPointSetIterator(), ExemplifyPolygonIterator(), exportRastertoGPKG(), te::mnt::SplineInterpolationGrass::generateGrid(), te::rp::GetDetailedExtent(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::wcs::Transactor::getExtent(), te::wms::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::ws::ogc::wms::GetMap(), te::ws::ogc::wms::GetMapRaster(), te::sa::SamplePointsGeneratorAbstract::getPoint(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::MapDisplay::getScale(), GribPolygonExample(), WorldTransformer::initVariables(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), Mask(), te::mnt::ProfileTools::mouseReleaseEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::gm::PrepareGeometriesToIntersection(), te::md::Save(), te::qt::widgets::MapDisplay::setScale(), GAP::step4(), TsEnvelop::tcGetUpperRightX(), Texture(), ToMeters(), te::rst::Raster::toString(), and te::rst::Raster::trim().

double & te::gm::Envelope::getUpperRightX ( )
inline

It returns a constant refernce to the y coordinate of the upper right corner.

Returns
A constant refernce to the y coordinate of the upper right corner.

Definition at line 419 of file geometry/Envelope.h.

References m_urx.

const double & te::gm::Envelope::getUpperRightY ( ) const
inline

It returns a constant refernce to the x coordinate of the upper right corner.

Returns
A constant refernce to the x coordinate of the upper right corner.

Definition at line 424 of file geometry/Envelope.h.

References m_ury.

Referenced by te::mem::ExpansibleRaster::addBottomLines(), te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gm::AddIntersectionPoints(), te::mem::ExpansibleRaster::addLeftColumns(), te::mem::ExpansibleRaster::addRightColumns(), te::mem::ExpansibleRaster::addTopLines(), te::qt::widgets::FusionWizard::adjustRasters(), te::mnt::SplineInterpolationGrassMitasova::calculateGrid(), CalculateHorizontalLines(), CalculateVerticalLines(), te::md::MD_DataIdentification::clone(), te::mnt::CreateIsolines::connectLines(), te::mnt::TINGeneration::CreateInitialTriangles(), CreatePolygons(), te::mnt::Volume::DefLC(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::qt::widgets::DataSetDisplay::draw(), te::qt::widgets::Canvas::draw(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), ExemplifyLineIterator(), ExemplifyPointSetIterator(), ExemplifyPolygonIterator(), exportRastertoGPKG(), te::mnt::SplineInterpolationGrass::generateGrid(), te::mnt::Shadow::GenerateImage(), te::rp::GetDetailedExtent(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::wcs::Transactor::getExtent(), te::wms::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::ws::ogc::wms::GetMap(), te::ws::ogc::wms::GetMapRaster(), te::sa::SamplePointsGeneratorAbstract::getPoint(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::MapDisplay::getScale(), te::rst::TileIndexer::getTileIndex(), GribPolygonExample(), te::mnt::SplineInterpolationGrassMitasova::IL_grid_calc(), te::mnt::CalculateGrid::Initialize(), WorldTransformer::initVariables(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), Mask(), te::mnt::ProfileTools::mouseReleaseEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::gm::PrepareGeometriesToIntersection(), te::mnt::Slope::run(), te::mnt::TINCalculateGrid::run(), te::md::Save(), te::qt::widgets::MapDisplay::setScale(), GAP::step4(), TsEnvelop::tcGetUpperRightY(), Texture(), ToMeters(), te::rst::Raster::toString(), and te::rst::Raster::trim().

double & te::gm::Envelope::getUpperRightY ( )
inline

It returns a constant refernce to the y coordinate of the upper right corner.

Returns
A constant refernce to the y coordinate of the upper right corner.

Definition at line 429 of file geometry/Envelope.h.

References m_ury.

double te::gm::Envelope::getWidth ( ) const
inline

It returns the envelope width.

Returns
The envelope width.

Definition at line 447 of file geometry/Envelope.h.

References m_llx, and m_urx.

Referenced by te::qt::widgets::Zoom::applyZoom(), te::sa::KernelOperation::buildRaster(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::graph::BoxLoaderStrategy::calculateBox(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), CalculateVerticalLines(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::checkList(), te::qt::widgets::Canvas::draw(), te::qt::widgets::ImageItem::generateRoute(), getArea(), GetCenteredBox(), te::rst::Grid::getResolutionX(), te::qt::widgets::MapDisplay::getScale(), GetScale(), GetWidthInUnit(), GribExample(), te::rst::Grid::Grid(), te::mnt::CalculateGrid::Initialize(), WorldTransformer::initVariables(), te::qt::widgets::Grid::makeGeographicGrid(), te::qt::widgets::Grid::makePlanarGrid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::widgets::PanMiddleClick::mouseReleaseEvent(), te::qt::widgets::Pan::mouseReleaseEvent(), te::qt::widgets::RasterSymbolizerWidget::onHistogramToolButtonClicked(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), RasterizePolygonSet(), te::rst::Reproject(), te::mnt::Slope::run(), te::mnt::TINCalculateGrid::run(), te::sa::KernelOperation::runDataSetKernel(), te::sa::KernelOperation::runRasterKernel(), te::mnt::CalculateGrid::setEnvelope(), te::qt::widgets::ImageItem::setImagePosition(), te::rst::Grid::setNumberOfColumns(), te::rst::Grid::setNumberOfRows(), te::qt::widgets::MapDisplay::setScale(), TsEnvelop::tcGetWidth_Right_Area(), ToMeters(), te::gdal::Raster::transform(), and te::rst::Raster::transform().

void te::gm::Envelope::init ( const double &  llx,
const double &  lly,
const double &  urx,
const double &  ury 
)
inline
Envelope te::gm::Envelope::intersection ( const Envelope rhs) const
inline

It returns an envelope that represents the point set intersection with another envelope.

Parameters
rhsThe other envelope whose intersection with this envelope will be calculated.
Returns
An envelope representing the intersection with this envelope. It can be a degenerated envelope if they only "spatially touch" each other".
Precondition
The rhs envelope must intersects this envelope.
Note
The caller of this method will take the ownership of the returned envelope.
Warning
Calling this method with two envelopes that doesn't intersect may return an invalid envelope.

Definition at line 547 of file geometry/Envelope.h.

References Envelope(), intersects(), m_llx, m_lly, m_urx, and m_ury.

Referenced by te::qt::widgets::FusionWizard::adjustRasters(), te::wms::WMSLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::ContrastDialogForm::onVisibleAreaRadioButtonToggled(), and TsEnvelop::tcIntersection().

bool te::gm::Envelope::intersects ( const Envelope rhs) const
inline

It returns true if the envelopes "spatially intersects".

Parameters
rhsThe other envelope to be compared.
Returns
True if the envelopes "spatially intersects".

Definition at line 497 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by te::qt::widgets::FusionWizard::adjustRasters(), distance(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::wms::WMSLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::ClippingWizard::executeLayerExtentClipping(), te::qt::widgets::Selection::executeSelection(), te::edit::DeleteGeometryByAreaTool::executeSelection(), te::qt::widgets::DefaultFeatureInfoMaker::getInfo(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::qt::widgets::ClippingWizardPage::getLayerClippingAttribute(), intersection(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::widgets::ClippingWizardPage::onEnvelopeAcquired(), te::qt::widgets::ROIManagerWidget::onEnvelopeAcquired(), te::qt::widgets::ContrastDialogForm::onEnvelopeAcquired(), te::qt::widgets::RasterSlicingWizardPage::onEnvelopeAcquired(), te::edit::PickFeature(), te::gm::PrepareGeometriesToIntersection(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::remove2(), te::attributefill::RasterToVector::run(), te::attributefill::VectorToVectorMemory::run(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::search(), and TsEnvelop::tcIntersects().

bool te::gm::Envelope::isValid ( ) const
inline

It tells if the rectangle is valid or not.

Returns
False if the rectangle coordinates are not valid and true otherwise.

Definition at line 442 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Zoom::applyZoom(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), CalculateHorizontalLines(), CalculateVerticalLines(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::checkList(), te::map::QueryLayer::computeExtent(), te::wms::WMSLayerRenderer::draw(), te::edit::MergeGeometriesTool::draw(), te::edit::EditInfoTool::draw(), te::edit::AddCommand::draw(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::graph::LayerRenderer::draw(), te::edit::SubtractAreaTool::draw(), te::qt::widgets::PointMove::draw(), te::edit::AggregateAreaTool::draw(), te::edit::RotateGeometryTool::draw(), te::edit::CreatePointTool::draw(), te::edit::DeleteGeometryByAreaTool::draw(), te::edit::CreateLineTool::draw(), te::edit::CreatePolygonTool::draw(), te::qt::af::MapDisplay::draw(), te::edit::MoveGeometryTool::draw(), te::edit::SplitPolygonTool::draw(), te::edit::VertexTool::draw(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::map::DrawGeometries(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::wms::WMSLayerRenderer::drawRaster(), te::map::DrawRaster(), te::edit::MergeGeometriesTool::editingFinished(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), exportRastertoGPKG(), te::qt::plugins::terramobile::exportToGPKG(), te::edit::Repository::getFeatures(), te::edit::Snap::getSearchEnvelope(), GetTransformGeo(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::Index(), te::qt::widgets::Grid::makeGeographicGrid(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::edit::DeletePartTool::mousePressEvent(), te::qt::widgets::ContrastDialogForm::onAllImageRadioButtonToggled(), te::mnt::SlopeDialog::onDimCLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimCLineEditEditingFinished(), te::mnt::SlopeDialog::onDimLLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimLLineEditEditingFinished(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::widgets::ClippingWizardPage::onEnvelopeAcquired(), te::qt::widgets::ROIManagerWidget::onEnvelopeAcquired(), te::qt::widgets::ContrastDialogForm::onEnvelopeAcquired(), te::qt::widgets::RasterSlicingWizardPage::onEnvelopeAcquired(), te::qt::widgets::MixtureModelWizardPage::onEnvelopeAcquired(), te::qt::af::BaseApplication::onLayerFitSelectedOnMapDisplayTriggered(), te::qt::widgets::RasterNavigatorWidget::onMapDisplayExtentChanged(), te::qt::widgets::EyeBirdMapDisplayWidget::onParentMapDisplayExtentChanged(), te::qt::widgets::ZoomInMapDisplayWidget::onParentMapDisplayExtentChanged(), te::qt::widgets::ClippingWizardPage::onPreviewClicked(), te::mnt::SlopeDialog::onResXLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResXLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResXLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResXLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResXLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResXLineEditEditingFinished(), te::mnt::SlopeDialog::onResYLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResYLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResYLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResYLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResYLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResYLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onSrsToolButtonClicked(), te::qt::widgets::ContrastDialogForm::onVisibleAreaRadioButtonToggled(), te::qt::af::MapDisplay::pan(), te::rst::Reproject(), te::md::Save(), te::edit::SnapVertex::search(), te::qt::widgets::RasterSlicingWizardPage::setExtent(), te::map::MapDisplay::setSRID(), WorldTransformer::setTransformationParameters(), TsEnvelop::tcIsValidRect(), te::qt::widgets::TimeSliderWidget::TimeSliderWidget(), ToGeographic(), ToPlanar(), te::qt::widgets::MultiThreadMapDisplay::transform(), te::gdal::Raster::transform(), te::qt::widgets::RasterSlicingWizardPage::trimRaster(), te::qt::widgets::MultiThreadMapDisplay::updateTransform(), and WorldBoxTo().

Envelope & te::gm::Envelope::operator= ( const Envelope rhs)
inline

Assignment operator.

Parameters
rhsThe source object to copy from.
Returns
A reference to this instance.

Definition at line 462 of file geometry/Envelope.h.

References init(), m_llx, m_lly, m_urx, and m_ury.

bool te::gm::Envelope::operator== ( const Envelope rhs) const
inline

Equal operator.

Parameters
rhsThe source object to be compared.
Returns
True if the rectangles have the same exact coordinates.

Definition at line 470 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

bool te::gm::Envelope::touches ( const Envelope rhs) const
inline

It returns true if the envelopes "spatially touches".

Parameters
rhsThe other envelope to be compared.
Returns
True if the envelopes "spatially touches".

Definition at line 508 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by TsEnvelop::tcTouches().

void te::gm::Envelope::transform ( int  oldsrid,
int  newsrid 
)

It will transform the coordinates of the Envelope from the old SRS to the new one.

After calling this method the Envelope will be associated to the new SRID.

Parameters
oldsridThe old Spatial Reference System.
newsridThe new Spatial Reference System used to transform the coordinates of the Envelope.
Exceptions
ExceptionIt may throw an exception if it can not do the transformation.

Definition at line 94 of file geometry/Envelope.cpp.

References te::gm::CreatePolygon(), te::gm::Geometry::getMBR(), m_llx, m_lly, m_urx, m_ury, TE_TR, and te::gm::CurvePolygon::transform().

Referenced by te::qt::widgets::FusionWizard::adjustRasters(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::qt::widgets::MapDisplay::changeData(), te::ws::ogc::wms::WMSLayerRenderer::draw(), te::wms::WMSLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::rp::ArithmeticOperations::execBinaryOperatorRasterXRaster(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::execute(), te::rp::SequenceMosaic::execute(), te::qt::widgets::Selection::executeSelection(), te::edit::DeleteGeometryByAreaTool::executeSelection(), te::map::GetExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::DefaultFeatureInfoMaker::getInfo(), te::ws::ogc::wms::qt::WMSGetFeatureInfoMaker::getInfo(), te::qt::widgets::getRasterVisibleArea(), te::qt::widgets::ImageItem::getRect(), te::edit::MergeGeometriesTool::getRefEnvelope(), te::map::GetSelectedExtent(), te::map::GetWorldBoxInPlanar(), te::qt::widgets::Grid::makePlanarGrid(), te::edit::EditInfoTool::mousePressEvent(), te::qt::widgets::InputCoordinateDialog::ok_triggered(), te::qt::widgets::TiePointLocatorWidget::onAutoAcquireTiePointsToolButtonClicked(), te::qt::widgets::RasterSymbolizerWidget::onCalcRasterSummaryClicked(), te::qt::widgets::ClippingWizardPage::onEnvelopeAcquired(), te::qt::widgets::ROIManagerWidget::onEnvelopeAcquired(), te::qt::widgets::ContrastDialogForm::onEnvelopeAcquired(), te::qt::widgets::RasterSlicingWizardPage::onEnvelopeAcquired(), te::qt::widgets::MixtureModelWizardPage::onEnvelopeAcquired(), te::qt::widgets::ClippingWizardPage::onExtentLayerComboBoxChanged(), te::qt::widgets::RasterSymbolizerWidget::onHistogramToolButtonClicked(), te::qt::af::BaseApplication::onLayerFitOnMapDisplayTriggered(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onSrsToolButtonClicked(), te::qt::widgets::ContrastDialogForm::onVisibleAreaRadioButtonToggled(), te::edit::PickFeature(), te::qt::widgets::Grid::redraw(), te::attributefill::VectorToVectorMemory::run(), te::ws::ogc::wms::WMSLayer::setCurrentSRID(), te::map::MapDisplay::setSRID(), te::rst::Raster::transform(), and WorldBoxTo().

bool te::gm::Envelope::within ( const Envelope rhs) const
inline

It returns true if this envelope is "spatially within" the rhs envelope.

Parameters
rhsThe other envelope to be compared.
Returns
True if this envelope is "spatially within" the rhs envelope.

Definition at line 531 of file geometry/Envelope.h.

References m_llx, m_lly, m_urx, and m_ury.

Referenced by te::edit::EditInfoTool::mousePressEvent(), and TsEnvelop::tcWithin().

Member Data Documentation

double te::gm::Envelope::m_llx

Lower left corner x-coordinate.

Definition at line 344 of file geometry/Envelope.h.

Referenced by te::ado::Transactor::add(), te::qt::plugins::wtss::WtssDialog::addMarker(), te::qt::widgets::MapDisplay::adjustExtent(), te::gm::AdjustToCut(), te::rp::FeederConstRasterDirectory::applyGeometryRestriction(), te::qt::widgets::CloudDetectionDialog::applyPreview(), te::edit::Renderer::begin(), BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_SUITE(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::build(), te::qt::widgets::Canvas::calcAspectRatio(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), te::gm::CircularString::computeMBR(), te::gm::LineString::computeMBR(), te::sa::GPMConstructorDistanceStrategy::constructStrategy(), contains(), te::gpkg::Convert2OGR(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), CreateCellSpace(), te::cellspace::CellularSpacesOperations::createCellSpace(), te::gm::CreatePolygon(), te::rst::CropRaster(), te::sa::DataSetAdaptRadiusKernel(), te::sa::DataSetStatRadiusKernel(), disjoint(), distance(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::PointMove::draw(), te::qt::widgets::TrajectoryItem::draw(), te::qt::widgets::Canvas::draw(), Draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::ContrastDialogForm::drawGeom(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::qt::widgets::FilterDialogForm::drawGeom(), te::qt::widgets::CloudDetectionDialog::drawGeom(), te::qt::widgets::RasterSlicingWizardPage::drawGeom(), te::qt::widgets::ColorTransformDialog::drawGeom(), te::qt::widgets::DefaultFeatureInfoMaker::drawGeometry(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), DrawingRasterObject(), te::vp::CheckGeomValidityDialog::drawMark(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::ContrastDialogForm::drawPreview(), te::qt::widgets::FilterDialogForm::drawPreview(), te::qt::widgets::ColorTransformDialog::drawPreview(), te::qt::widgets::RasterSlicingWizardPage::drawPreview(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ROIManagerWidget::drawROISet(), te::mnt::ProfileDialog::DrawSelected(), te::qt::plugins::edit::Plugin::drawStashed(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), Envelope_LLXGetter(), Envelope_LLXSetter(), te::qt::widgets::RasterizationWizard::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::qt::widgets::ClippingWizard::executeLayerClipping(), te::qt::widgets::ClippingWizard::executeLayerClippingAttribute(), te::rp::TiePointsLocatorMoravecStrategy::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocatorSURFStrategy::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::ImageItem::generateRoute(), te::wms::GetBBOXValues(), te::qt::widgets::MapDisplay::getCanvas(), getCenter(), te::ogr::Transactor::getDataSet(), te::gpkg::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::getEnvelope(), te::pgis::GetEnvelope(), te::gm::GetGeometryUnion(), te::gm::GetGeomFromEnvelope(), getLowerLeft(), getLowerLeftX(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::sqlite::GetRtreeFilter(), te::edit::Snap::getSearchEnvelope(), getWidth(), te::rst::Grid::Grid(), te::sa::GridAdaptRadiusKernel(), te::sa::GridStatRadiusKernel(), init(), te::rst::PolygonIterator< T >::initialize(), intersection(), te::gm::Intersects(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::mnt::ProfileTools::mouseReleaseEvent(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::nearestNeighborSearch(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::plugins::wtss::WtssDialog::onAddCoordToList(), te::mnt::SlopeDialog::onDimLLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimLLineEditEditingFinished(), te::vp::CheckGeomValidityDialog::onDisplayPaintEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::edit::SnapOptionsDialog::onOkPushButtonPressed(), te::mnt::SlopeDialog::onResXLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResXLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResXLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResXLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResXLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResXLineEditEditingFinished(), te::qt::widgets::ROIManagerWidget::onROITreItemClicked(), te::qt::widgets::ClippingWizardPage::onSelectRoiItem(), te::vp::CheckGeomValidityDialog::onTableWidgetItemDoubleClicked(), operator=(), operator==(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::gm::PrepareGeometriesToIntersection(), te::gpkg::Transactor::query(), te::ogr::Transactor::query(), te::wfs::Transactor::query(), te::rp::Register::InputParameters::reset(), te::serialize::xml::SaveExtent(), te::sam::kdtree::Index< KdTreeNode >::search(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::search(), te::qt::widgets::ImageItem::setImagePosition(), te::mnt::ImageGenerationDialog::setMapDisplay(), te::qt::widgets::AnimationView::setMatrix(), te::rst::Grid::setNumberOfColumns(), te::rst::Grid::setNumberOfRows(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::showEnvelope(), TsGeometry::tcCreateLineString(), TsGeometry::tcCreateLineStringM(), TsGeometry::tcCreateLineStringZ(), TsGeometry::tcCreateLineStringZM(), TsGeometry::tcCreatePoint(), TsGeometry::tcCreatePointM(), TsGeometry::tcCreatePointZ(), TsGeometry::tcCreatePointZM(), TsEnvelop::tcEnvelopCopy(), TsEnvelop::tcEnvelopInit(), TsEnvelop::tcEnvelopInvalid(), TsEnvelop::tcEnvelopValid(), TsDataSourceTransactor::tcGetDataSetByEnvRec(), TsDataSource::tcGetDataSetByEnvRec(), TsEnvelop::tcIntersection(), TsEnvelop::tcMakeInvalid(), TsCanvas::tcPerformance(), TsRTree::tcRTreeBox(), TsRTree::tcRTreeBox_2(), TsRTree::tcRTreeBox_3(), TsRTree::tcRTreeBox_4(), touches(), transform(), Union(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::update(), te::qt::widgets::MultiThreadMapDisplay::updateTransform(), te::ado::SQLVisitor::visit(), and within().

double te::gm::Envelope::m_lly

Lower left corner y-coordinate.

Definition at line 345 of file geometry/Envelope.h.

Referenced by te::qt::plugins::wtss::WtssDialog::addMarker(), te::qt::widgets::MapDisplay::adjustExtent(), te::gm::AdjustToCut(), te::rp::FeederConstRasterDirectory::applyGeometryRestriction(), te::qt::widgets::CloudDetectionDialog::applyPreview(), te::edit::Renderer::begin(), BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_SUITE(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::build(), te::qt::widgets::Canvas::calcAspectRatio(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), te::gm::CircularString::computeMBR(), te::gm::LineString::computeMBR(), contains(), te::gpkg::Convert2OGR(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), CreateCellSpace(), te::cellspace::CellularSpacesOperations::createCellSpace(), te::gm::CreatePolygon(), te::rst::CropRaster(), te::sa::DataSetAdaptRadiusKernel(), te::sa::DataSetStatRadiusKernel(), disjoint(), distance(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::PointMove::draw(), te::qt::widgets::TrajectoryItem::draw(), te::qt::widgets::Canvas::draw(), Draw(), te::ag::Canvas::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::ContrastDialogForm::drawGeom(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::qt::widgets::FilterDialogForm::drawGeom(), te::qt::widgets::CloudDetectionDialog::drawGeom(), te::qt::widgets::RasterSlicingWizardPage::drawGeom(), te::qt::widgets::ColorTransformDialog::drawGeom(), te::qt::widgets::DefaultFeatureInfoMaker::drawGeometry(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), DrawingRasterObject(), te::vp::CheckGeomValidityDialog::drawMark(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::ContrastDialogForm::drawPreview(), te::qt::widgets::FilterDialogForm::drawPreview(), te::qt::widgets::ColorTransformDialog::drawPreview(), te::qt::widgets::RasterSlicingWizardPage::drawPreview(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ROIManagerWidget::drawROISet(), te::mnt::ProfileDialog::DrawSelected(), te::qt::plugins::edit::Plugin::drawStashed(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), Envelope_LLYGetter(), Envelope_LLYSetter(), te::qt::widgets::RasterizationWizard::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::qt::widgets::ClippingWizard::executeLayerClipping(), te::qt::widgets::ClippingWizard::executeLayerClippingAttribute(), te::rp::TiePointsLocatorMoravecStrategy::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocatorSURFStrategy::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::ImageItem::generateRoute(), te::wms::GetBBOXValues(), te::qt::widgets::MapDisplay::getCanvas(), getCenter(), te::ogr::Transactor::getDataSet(), te::gpkg::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::getEnvelope(), te::pgis::GetEnvelope(), te::gm::GetGeometryUnion(), te::gm::GetGeomFromEnvelope(), getHeight(), getLowerLeft(), getLowerLeftY(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::sqlite::GetRtreeFilter(), te::edit::Snap::getSearchEnvelope(), te::sa::GridAdaptRadiusKernel(), te::sa::GridStatRadiusKernel(), init(), te::rst::PolygonIterator< T >::initialize(), intersection(), te::gm::Intersects(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::mnt::ProfileTools::mouseReleaseEvent(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::nearestNeighborSearch(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::plugins::wtss::WtssDialog::onAddCoordToList(), te::mnt::SlopeDialog::onDimCLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimCLineEditEditingFinished(), te::vp::CheckGeomValidityDialog::onDisplayPaintEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::edit::SnapOptionsDialog::onOkPushButtonPressed(), te::mnt::SlopeDialog::onResYLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResYLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResYLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResYLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResYLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResYLineEditEditingFinished(), te::qt::widgets::ROIManagerWidget::onROITreItemClicked(), te::qt::widgets::ClippingWizardPage::onSelectRoiItem(), te::vp::CheckGeomValidityDialog::onTableWidgetItemDoubleClicked(), operator=(), operator==(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::gm::PrepareGeometriesToIntersection(), te::ogr::Transactor::query(), te::gpkg::Transactor::query(), te::wfs::Transactor::query(), te::rp::Register::InputParameters::reset(), te::serialize::xml::SaveExtent(), te::sam::kdtree::Index< KdTreeNode >::search(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::search(), te::qt::widgets::ImageItem::setImagePosition(), te::mnt::ImageGenerationDialog::setMapDisplay(), te::qt::widgets::AnimationView::setMatrix(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::showEnvelope(), TsGeometry::tcCreateLineString(), TsGeometry::tcCreateLineStringM(), TsGeometry::tcCreateLineStringZ(), TsGeometry::tcCreateLineStringZM(), TsGeometry::tcCreatePoint(), TsGeometry::tcCreatePointM(), TsGeometry::tcCreatePointZ(), TsGeometry::tcCreatePointZM(), TsEnvelop::tcEnvelopCopy(), TsEnvelop::tcEnvelopInit(), TsEnvelop::tcEnvelopInvalid(), TsEnvelop::tcEnvelopValid(), TsDataSourceTransactor::tcGetDataSetByEnvRec(), TsDataSource::tcGetDataSetByEnvRec(), TsEnvelop::tcIntersection(), TsEnvelop::tcMakeInvalid(), TsCanvas::tcPerformance(), TsRTree::tcRTreeBox(), TsRTree::tcRTreeBox_2(), TsRTree::tcRTreeBox_3(), TsRTree::tcRTreeBox_4(), touches(), transform(), Union(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::update(), te::qt::widgets::MultiThreadMapDisplay::updateTransform(), te::ado::SQLVisitor::visit(), and within().

double te::gm::Envelope::m_urx

Upper right corner x-coordinate.

Definition at line 346 of file geometry/Envelope.h.

Referenced by te::qt::plugins::wtss::WtssDialog::addMarker(), te::qt::widgets::MapDisplay::adjustExtent(), te::gm::AdjustToCut(), te::rp::FeederConstRasterDirectory::applyGeometryRestriction(), te::qt::widgets::CloudDetectionDialog::applyPreview(), te::edit::Renderer::begin(), BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_SUITE(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::build(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), te::gm::CircularString::computeMBR(), te::gm::LineString::computeMBR(), contains(), te::gpkg::Convert2OGR(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), CreateCellSpace(), te::cellspace::CellularSpacesOperations::createCellSpace(), te::gm::CreatePolygon(), te::rst::CropRaster(), te::sa::DataSetAdaptRadiusKernel(), te::sa::DataSetStatRadiusKernel(), disjoint(), distance(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::PointMove::draw(), te::qt::widgets::TrajectoryItem::draw(), Draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::ContrastDialogForm::drawGeom(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::qt::widgets::FilterDialogForm::drawGeom(), te::qt::widgets::CloudDetectionDialog::drawGeom(), te::qt::widgets::RasterSlicingWizardPage::drawGeom(), te::qt::widgets::ColorTransformDialog::drawGeom(), te::qt::widgets::DefaultFeatureInfoMaker::drawGeometry(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), DrawingRasterObject(), te::vp::CheckGeomValidityDialog::drawMark(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::ContrastDialogForm::drawPreview(), te::qt::widgets::FilterDialogForm::drawPreview(), te::qt::widgets::ColorTransformDialog::drawPreview(), te::qt::widgets::RasterSlicingWizardPage::drawPreview(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ROIManagerWidget::drawROISet(), te::mnt::ProfileDialog::DrawSelected(), te::qt::plugins::edit::Plugin::drawStashed(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), Envelope_URXGetter(), Envelope_URXSetter(), te::qt::widgets::RasterizationWizard::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::qt::widgets::ClippingWizard::executeLayerClipping(), te::qt::widgets::ClippingWizard::executeLayerClippingAttribute(), te::rp::TiePointsLocatorMoravecStrategy::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocatorSURFStrategy::executeMatchingByEuclideanDistThreadEntry(), te::wms::GetBBOXValues(), te::qt::widgets::MapDisplay::getCanvas(), getCenter(), te::ogr::Transactor::getDataSet(), te::gpkg::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::getEnvelope(), te::pgis::GetEnvelope(), te::gm::GetGeometryUnion(), te::gm::GetGeomFromEnvelope(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::sqlite::GetRtreeFilter(), te::edit::Snap::getSearchEnvelope(), getUpperRight(), getUpperRightX(), getWidth(), te::sa::GridAdaptRadiusKernel(), te::sa::GridStatRadiusKernel(), init(), te::rst::PolygonIterator< T >::initialize(), intersection(), te::gm::Intersects(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::mnt::ProfileTools::mouseReleaseEvent(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::nearestNeighborSearch(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::plugins::wtss::WtssDialog::onAddCoordToList(), te::mnt::SlopeDialog::onDimLLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimLLineEditEditingFinished(), te::vp::CheckGeomValidityDialog::onDisplayPaintEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::edit::SnapOptionsDialog::onOkPushButtonPressed(), te::mnt::SlopeDialog::onResXLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResXLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResXLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResXLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResXLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResXLineEditEditingFinished(), te::qt::widgets::ROIManagerWidget::onROITreItemClicked(), te::qt::widgets::ClippingWizardPage::onSelectRoiItem(), te::vp::CheckGeomValidityDialog::onTableWidgetItemDoubleClicked(), operator=(), operator==(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::gm::PrepareGeometriesToIntersection(), te::ogr::Transactor::query(), te::gpkg::Transactor::query(), te::wfs::Transactor::query(), te::rp::Register::InputParameters::reset(), te::serialize::xml::SaveExtent(), te::sam::kdtree::Index< KdTreeNode >::search(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::search(), te::mnt::ImageGenerationDialog::setMapDisplay(), te::qt::widgets::AnimationView::setMatrix(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::showEnvelope(), TsGeometry::tcCreateLineString(), TsGeometry::tcCreateLineStringM(), TsGeometry::tcCreateLineStringZ(), TsGeometry::tcCreateLineStringZM(), TsGeometry::tcCreatePoint(), TsGeometry::tcCreatePointM(), TsGeometry::tcCreatePointZ(), TsGeometry::tcCreatePointZM(), TsEnvelop::tcEnvelopCopy(), TsEnvelop::tcEnvelopInit(), TsEnvelop::tcEnvelopInvalid(), TsEnvelop::tcEnvelopValid(), TsDataSourceTransactor::tcGetDataSetByEnvRec(), TsDataSource::tcGetDataSetByEnvRec(), TsEnvelop::tcIntersection(), TsEnvelop::tcMakeInvalid(), TsCanvas::tcPerformance(), TsRTree::tcRTreeBox(), TsRTree::tcRTreeBox_2(), TsRTree::tcRTreeBox_3(), TsRTree::tcRTreeBox_4(), touches(), transform(), Union(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::update(), te::qt::widgets::MultiThreadMapDisplay::updateTransform(), te::ado::SQLVisitor::visit(), and within().

double te::gm::Envelope::m_ury

Upper right corner y-coordinate.

Definition at line 347 of file geometry/Envelope.h.

Referenced by te::qt::plugins::wtss::WtssDialog::addMarker(), te::qt::widgets::MapDisplay::adjustExtent(), te::gm::AdjustToCut(), te::rp::FeederConstRasterDirectory::applyGeometryRestriction(), te::qt::widgets::CloudDetectionDialog::applyPreview(), te::edit::Renderer::begin(), BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_SUITE(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::build(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), te::gm::CircularString::computeMBR(), te::gm::LineString::computeMBR(), contains(), te::gpkg::Convert2OGR(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), CreateCellSpace(), te::cellspace::CellularSpacesOperations::createCellSpace(), te::gm::CreatePolygon(), te::rst::CropRaster(), te::sa::DataSetAdaptRadiusKernel(), te::sa::DataSetStatRadiusKernel(), disjoint(), distance(), te::map::QueryLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::PointMove::draw(), te::qt::widgets::TrajectoryItem::draw(), Draw(), te::ag::Canvas::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::ContrastDialogForm::drawGeom(), te::qt::widgets::ClippingWizardPage::drawGeom(), te::qt::widgets::FilterDialogForm::drawGeom(), te::qt::widgets::CloudDetectionDialog::drawGeom(), te::qt::widgets::RasterSlicingWizardPage::drawGeom(), te::qt::widgets::ColorTransformDialog::drawGeom(), te::qt::widgets::DefaultFeatureInfoMaker::drawGeometry(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), DrawingRasterObject(), te::vp::CheckGeomValidityDialog::drawMark(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::ContrastDialogForm::drawPreview(), te::qt::widgets::FilterDialogForm::drawPreview(), te::qt::widgets::ColorTransformDialog::drawPreview(), te::qt::widgets::RasterSlicingWizardPage::drawPreview(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ROIManagerWidget::drawROISet(), te::mnt::ProfileDialog::DrawSelected(), te::qt::plugins::edit::Plugin::drawStashed(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), Envelope_URYGetter(), Envelope_URYSetter(), te::qt::widgets::RasterizationWizard::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::qt::widgets::ClippingWizard::executeLayerClipping(), te::qt::widgets::ClippingWizard::executeLayerClippingAttribute(), te::rp::TiePointsLocatorMoravecStrategy::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocatorSURFStrategy::executeMatchingByEuclideanDistThreadEntry(), te::wms::GetBBOXValues(), te::qt::widgets::MapDisplay::getCanvas(), getCenter(), te::ogr::Transactor::getDataSet(), te::gpkg::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::getEnvelope(), te::pgis::GetEnvelope(), te::gm::GetGeometryUnion(), te::gm::GetGeomFromEnvelope(), getHeight(), te::qt::widgets::FilterDialogForm::getRasterFromROI(), te::qt::widgets::CloudDetectionDialog::getRasterFromROI(), te::qt::widgets::ColorTransformDialog::getRasterFromROI(), te::qt::widgets::RasterSlicingWizardPage::getRasterFromROI(), te::sqlite::GetRtreeFilter(), te::edit::Snap::getSearchEnvelope(), getUpperRight(), getUpperRightY(), te::rst::Grid::Grid(), te::sa::GridAdaptRadiusKernel(), te::sa::GridStatRadiusKernel(), init(), te::rst::PolygonIterator< T >::initialize(), intersection(), te::gm::Intersects(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::mnt::ProfileTools::mouseReleaseEvent(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::nearestNeighborSearch(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::plugins::wtss::WtssDialog::onAddCoordToList(), te::mnt::SlopeDialog::onDimCLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onDimCLineEditEditingFinished(), te::vp::CheckGeomValidityDialog::onDisplayPaintEvent(), te::qt::widgets::ColorTransformDialog::onEnvelopeAcquired(), te::qt::widgets::FilterDialogForm::onEnvelopeAcquired(), te::qt::widgets::CloudDetectionDialog::onEnvelopeAcquired(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), te::edit::SnapOptionsDialog::onOkPushButtonPressed(), te::mnt::SlopeDialog::onResYLineEditEditingFinished(), te::mnt::MNTGenerationDialog::onResYLineEditEditingFinished(), te::attributefill::VectorToRasterDialog::onResYLineEditEditingFinished(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::onResYLineEditEditingFinished(), te::mnt::ImageGenerationDialog::onResYLineEditEditingFinished(), te::qt::widgets::RasterizationWizardPage::onResYLineEditEditingFinished(), te::qt::widgets::ROIManagerWidget::onROITreItemClicked(), te::qt::widgets::ClippingWizardPage::onSelectRoiItem(), te::vp::CheckGeomValidityDialog::onTableWidgetItemDoubleClicked(), operator=(), operator==(), te::qt::widgets::TrajectoryItem::paint(), te::qt::af::MapDisplay::pan(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::gm::PrepareGeometriesToIntersection(), te::gpkg::Transactor::query(), te::ogr::Transactor::query(), te::wfs::Transactor::query(), te::rp::Register::InputParameters::reset(), te::serialize::xml::SaveExtent(), te::sam::kdtree::Index< KdTreeNode >::search(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::search(), te::mnt::ImageGenerationDialog::setMapDisplay(), te::qt::widgets::AnimationView::setMatrix(), te::rst::Grid::setNumberOfColumns(), te::rst::Grid::setNumberOfRows(), te::qt::plugins::cellspace::CreateCellularSpaceDialog::showEnvelope(), TsGeometry::tcCreateLineString(), TsGeometry::tcCreateLineStringM(), TsGeometry::tcCreateLineStringZ(), TsGeometry::tcCreateLineStringZM(), TsGeometry::tcCreatePoint(), TsGeometry::tcCreatePointM(), TsGeometry::tcCreatePointZ(), TsGeometry::tcCreatePointZM(), TsEnvelop::tcEnvelopCopy(), TsEnvelop::tcEnvelopInit(), TsEnvelop::tcEnvelopInvalid(), TsEnvelop::tcEnvelopValid(), TsDataSourceTransactor::tcGetDataSetByEnvRec(), TsDataSource::tcGetDataSetByEnvRec(), TsEnvelop::tcIntersection(), TsEnvelop::tcMakeInvalid(), TsCanvas::tcPerformance(), TsRTree::tcRTreeBox(), TsRTree::tcRTreeBox_2(), TsRTree::tcRTreeBox_3(), TsRTree::tcRTreeBox_4(), touches(), transform(), Union(), te::sam::kdtree::AdaptativeIndex< KdTreeNode >::update(), te::qt::widgets::MultiThreadMapDisplay::updateTransform(), te::ado::SQLVisitor::visit(), and within().


The documentation for this class was generated from the following files: