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. | |
| Envelope & | operator= (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... | |
An Envelope defines a 2D rectangular region.
Definition at line 51 of file geometry/Envelope.h.
|
inline |
It constructs an envelope with invalid coordinates.
Definition at line 350 of file geometry/Envelope.h.
Referenced by intersection().
|
inline |
Constructor.
| llx | Lower left corner x-coordinate. |
| lly | Lower left corner y-coordinate. |
| urx | Upper right corner x-coordinate. |
| ury | Upper right corner y-coordinate. |
Definition at line 355 of file geometry/Envelope.h.
|
inline |
Constructor.
| vectd | Vector of doubles representing the envelope lower left and upper right corners. |
Definition at line 365 of file geometry/Envelope.h.
|
inline |
It returns true if this envelope "spatially contains" the rhs envelope.
| rhs | The other envelope to be compared. |
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().
It returns true if this envelope is "spatially disjoint" from rhs envelope.
| rhs | The other envelope to be compared. |
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.
| rhs | The other envelope. |
Definition at line 58 of file geometry/Envelope.cpp.
References dx, intersects(), m_llx, m_lly, m_urx, and m_ury.
It returns true if the envelopes are "spatially equal".
| rhs | The another envelope to be compared. |
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().
|
inline |
It returns the area of this envelope as measured in the spatial reference system of it.
Definition at line 457 of file geometry/Envelope.h.
References getHeight(), and getWidth().
Referenced by te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::classify(), te::sa::DataSetAdaptRadiusKernel(), te::sa::GridAdaptRadiusKernel(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickBranch(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pigeonhole(), and TsEnvelop::tcGetWidth_Right_Area().
| te::gm::Coord2D te::gm::Envelope::getCenter | ( | ) | const |
It 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().
|
inline |
It returns the envelope height.
Definition at line 452 of file geometry/Envelope.h.
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.
Definition at line 43 of file geometry/Envelope.cpp.
Referenced by te::rp::ClassifierDummyStrategy::execute(), InterpolateIn(), and TsEnvelop::tcGetLowerLeftCoord2D().
|
inline |
It 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().
|
inline |
It 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.
|
inline |
It 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().
|
inline |
It 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.
Definition at line 48 of file geometry/Envelope.cpp.
Referenced by te::rp::ClassifierDummyStrategy::execute(), InterpolateIn(), and TsEnvelop::tcGetUpperRightCoord2D().
|
inline |
It 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().
|
inline |
It 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.
|
inline |
It 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().
|
inline |
It 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.
|
inline |
It returns the envelope width.
Definition at line 447 of file geometry/Envelope.h.
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().
|
inline |
It initializes (sets) the envelope bounds.
| llx | Lower left corner x-coordinate. |
| lly | Lower left corner y-coordinate. |
| urx | Upper right corner x-coordinate. |
| ury | Upper right corner y-coordinate. |
Definition at line 385 of file geometry/Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::qt::widgets::Zoom::applyZoom(), te::gm::Point::computeMBR(), Envelope(), makeInvalid(), operator=(), te::mnt::ReadPoints(), te::mnt::ReadSamples(), te::gml::Envelope::setCoordinates(), te::gm::SnapLineToPoints(), TsEnvelop::tcEnvelopInit(), TsEnvelop::tcGetLowerLeftCoord2D(), TsEnvelop::tcGetLowerLeftX(), TsEnvelop::tcGetLowerLeftY(), TsEnvelop::tcGetUpperRightCoord2D(), TsEnvelop::tcGetUpperRightX(), TsEnvelop::tcGetUpperRightY(), TsEnvelop::tcGetWidth_Right_Area(), TsEnvelop::tcIsValidRect(), TsEnvelop::tcMakeInvalid(), and TsCanvas::tcPerformance().
It returns an envelope that represents the point set intersection with another envelope.
| rhs | The other envelope whose intersection with this envelope will be calculated. |
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().
It returns true if the envelopes "spatially intersects".
| rhs | The other envelope to be compared. |
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().
|
inline |
It tells if the rectangle is valid or not.
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().
|
inline |
It will invalidated the envelope.
Definition at line 434 of file geometry/Envelope.h.
References init().
Referenced by te::gm::CompoundCurve::computeMBR(), te::gm::GeometryCollection::computeMBR(), te::gm::CircularString::computeMBR(), te::gm::LineString::computeMBR(), te::gm::PolyhedralSurface::computeMBR(), te::gm::CurvePolygon::computeMBR(), te::qt::plugins::terramobile::GeoPackageBuilderWizard::GeoPackageBuilderWizard(), te::qt::widgets::RasterSlicingWizardPage::RasterSlicingWizardPage(), and TsEnvelop::tcMakeInvalid().
It returns true if the envelopes "spatially touches".
| rhs | The other envelope to be compared. |
Definition at line 508 of file geometry/Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by TsEnvelop::tcTouches().
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.
| oldsrid | The old Spatial Reference System. |
| newsrid | The new Spatial Reference System used to transform the coordinates of the Envelope. |
| Exception | It 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().
|
inline |
It updates the envelop with coordinates of another envelope.
| rhs | The other envelope whose coordinates will be used to update this one. |
Definition at line 559 of file geometry/Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by AdaptativeKdTree(), te::qt::widgets::TimeSliderWidget::calculateAllSpatialExtent(), te::qt::widgets::MapDisplay::changeData(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::combineRect(), computeDataSetEnvelope(), te::da::SpatialQueryProcessor::computeEnvelope(), te::gm::GeometryCollection::computeMBR(), te::gm::PolyhedralSurface::computeMBR(), DataSetAdapterLayerReader(), te::pgis::DataSet::getExtent(), te::pgis::ConnectedDataSet::getExtent(), te::map::GetExtent(), te::map::GetSelectedExtent(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::insert(), modis_dataset::impl::load_dataset_grid_info(), MapDisplay(), te::vp::MergeDialog::onOkPushButtonClicked(), te::mnt::CalculateGrid::setEnvelope(), and TsEnvelop::tcUnion().
It returns true if this envelope is "spatially within" the rhs envelope.
| rhs | The other envelope to be compared. |
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().
| 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().