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 Envelope.h.
      
  | 
  inline | 
It constructs an envelope with invalid coordinates.
Definition at line 350 of file Envelope.h.
References makeInvalid().
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 Envelope.h.
References init().
      
  | 
  inline | 
Constructor.
| vectd | Vector of doubles representing the envelope lower left and upper right corners. | 
Definition at line 361 of file Envelope.h.
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
| 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 53 of file Envelope.cpp.
      
  | 
  inline | 
It returns true if the envelopes are "spatially equal".
| rhs | The another envelope to be compared. | 
Definition at line 477 of file Envelope.h.
      
  | 
  inline | 
It returns the area of this envelope as measured in the spatial reference system of it.
Definition at line 453 of file Envelope.h.
References getHeight(), and getWidth().
Referenced by te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::classify(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickBranch(), and te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pigeonhole().
| te::gm::Coord2D te::gm::Envelope::getCenter | ( | ) | const | 
It returns the rectangle's center coordinate.
Definition at line 48 of file Envelope.cpp.
Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Zoom::applyZoom(), te::map::AbstractLayerRenderer::buildChart(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), te::qt::widgets::Measure::drawPolygon(), te::qt::widgets::Selection::executeSelection(), te::qt::widgets::Info::getGeometryInfo(), te::qt::widgets::Info::getRasterInfo(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), and te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered().
      
  | 
  inline | 
It returns the envelope height.
Definition at line 448 of file Envelope.h.
Referenced by te::qt::widgets::Zoom::applyZoom(), te::graph::BoxLoaderStrategy::calculateBox(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), te::qt::widgets::Canvas::draw(), getArea(), te::qt::widgets::DataFrame::getDataRect(), te::rst::Grid::Grid(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::rst::Reproject(), te::qt::widgets::DataFrame::setData(), te::qt::widgets::DataFrame::setScale(), te::gdal::Raster::transform(), and te::qt::widgets::DataFrame::transformEnvelope().
| te::gm::Coord2D te::gm::Envelope::getLowerLeft | ( | ) | const | 
It returns the lower left coordinate of the envelope.
Definition at line 38 of file Envelope.cpp.
Referenced by te::rp::ClassifierDummyStrategy::execute(), te::rp::ClassifierISOSegStrategy::execute(), InterpolateIn(), and te::rst::PolygonIterator< T >::PolygonIterator().
      
  | 
  inline | 
It returns a constant reference to the x coordinate of the lower left corner.
Definition at line 390 of file Envelope.h.
References m_llx.
Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::md::Save(), te::qt::widgets::DataFrame::setData(), te::qt::widgets::UpdateProperty::setRasterPropertyData(), te::qt::widgets::DataFrame::setScale(), and te::rst::Raster::trim().
      
  | 
  inline | 
It returns a constant reference to the x coordinate of the lower left corner.
Definition at line 395 of file Envelope.h.
References m_llx.
      
  | 
  inline | 
It returns a constant refernce to the y coordinate of the lower left corner.
Definition at line 400 of file Envelope.h.
References m_lly.
Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::md::Save(), te::qt::widgets::DataFrame::setData(), te::qt::widgets::UpdateProperty::setRasterPropertyData(), te::qt::widgets::DataFrame::setScale(), and te::rst::Raster::trim().
      
  | 
  inline | 
It returns a constant refernce to the y coordinate of the lower left corner.
Definition at line 405 of file 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 43 of file Envelope.cpp.
Referenced by te::rp::ClassifierDummyStrategy::execute(), te::rp::ClassifierISOSegStrategy::execute(), InterpolateIn(), and te::rst::PolygonIterator< T >::PolygonIterator().
      
  | 
  inline | 
It returns a constant refernce to the x coordinate of the upper right corner.
Definition at line 410 of file Envelope.h.
References m_urx.
Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::md::Save(), te::qt::widgets::UpdateProperty::setRasterPropertyData(), and te::rst::Raster::trim().
      
  | 
  inline | 
It returns a constant refernce to the y coordinate of the upper right corner.
Definition at line 415 of file Envelope.h.
References m_urx.
      
  | 
  inline | 
It returns a constant refernce to the x coordinate of the upper right corner.
Definition at line 420 of file Envelope.h.
References m_ury.
Referenced by te::md::MD_DataIdentification::addGeographicBBoxExt(), te::gdal::DataSet::getExtent(), te::rst::Raster::getExtent(), te::gdal::Transactor::getExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::LayerPropertiesInfo::LayerPropertiesInfo(), te::md::Save(), te::qt::widgets::UpdateProperty::setRasterPropertyData(), and te::rst::Raster::trim().
      
  | 
  inline | 
It returns a constant refernce to the y coordinate of the upper right corner.
Definition at line 425 of file Envelope.h.
References m_ury.
      
  | 
  inline | 
It returns the envelope width.
Definition at line 443 of file Envelope.h.
Referenced by te::qt::widgets::Zoom::applyZoom(), te::graph::BoxLoaderStrategy::calculateBox(), te::qt::widgets::ZoomInMapDisplayWidget::calculateExtent(), te::qt::widgets::Canvas::draw(), getArea(), te::qt::widgets::DataFrame::getDataRect(), te::rst::Grid::Grid(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::rst::Reproject(), te::qt::widgets::DataFrame::setData(), te::qt::widgets::DataFrame::setScale(), te::gdal::Raster::transform(), and te::qt::widgets::DataFrame::transformEnvelope().
      
  | 
  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 381 of file Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::rst::Grid::computeExtent(), Envelope(), makeInvalid(), operator=(), and te::qt::widgets::DataFrame::transformEnvelope().
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 543 of file Envelope.h.
References Envelope(), intersects(), m_llx, m_lly, m_urx, and m_ury.
Referenced by te::map::RasterLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::map::DataSetLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), and te::qt::widgets::RasterNavigatorWidget::getExtentRaster().
      
  | 
  inline | 
It returns true if the envelopes "spatially intersects".
| rhs | The other envelope to be compared. | 
Definition at line 493 of file Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::map::RasterLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::map::DataSetLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::Selection::executeSelection(), intersection(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::remove2(), and te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::search().
      
  | 
  inline | 
It tells if the rectangle is valid or not.
Definition at line 438 of file Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::qt::widgets::Zoom::applyZoom(), te::map::AbstractLayerRenderer::draw(), te::map::DrawGeometries(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::map::DrawRaster(), te::map::GetExtentRaster(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::Index(), te::qt::widgets::ZoomLeftAndRightClick::mousePressEvent(), te::qt::af::BaseApplication::onLayerFitSelectedOnMapDisplayTriggered(), te::qt::widgets::RasterNavigatorWidget::onMapDisplayExtentChanged(), te::qt::widgets::EyeBirdMapDisplayWidget::onParentMapDisplayExtentChanged(), te::qt::widgets::ZoomInMapDisplayWidget::onParentMapDisplayExtentChanged(), te::rst::Reproject(), te::md::Save(), and te::gdal::Raster::transform().
      
  | 
  inline | 
It will invalidated the envelope.
Definition at line 430 of file 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(), and Envelope().
      
  | 
  inline | 
      
  | 
  inline | 
| 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.
| 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 89 of file Envelope.cpp.
Referenced by te::qt::widgets::MapDisplay::changeData(), te::map::RasterLayerRenderer::draw(), te::map::QueryLayerRenderer::draw(), te::map::DataSetLayerRenderer::draw(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::Selection::executeSelection(), te::map::GetExtent(), te::qt::widgets::RasterNavigatorWidget::getExtentRaster(), te::qt::widgets::Info::getInfo(), te::map::GetSelectedExtent(), and te::qt::af::BaseApplication::onLayerFitOnMapDisplayTriggered().
      
  | 
  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 555 of file Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::qt::widgets::MapDisplay::changeData(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::combineRect(), computeDataSetEnvelope(), te::da::SpatialQueryProcessor::computeEnvelope(), DataSetAdapterLayerReader(), te::map::GetExtent(), and te::map::GetSelectedExtent().
      
  | 
  inline | 
It returns true if this envelope is "spatially within" the rhs envelope.
| rhs | The other envelope to be compared. | 
Definition at line 527 of file Envelope.h.
References m_llx, m_lly, m_urx, and m_ury.
Referenced by te::qt::widgets::Info::getInfo().
| double te::gm::Envelope::m_llx | 
Lower left corner x-coordinate.
Definition at line 344 of file Envelope.h.
Referenced by te::ado::Transactor::add(), te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), contains(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), disjoint(), distance(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::Canvas::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::qt::widgets::Info::drawGeometry(), te::qt::widgets::DataFrame::drawLayerSelection(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ClassifierWizardPage::drawSamples(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), te::rp::GeoMosaic::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), te::rp::TiePointsLocator::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocator::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::DataFrame::findDataUnitToMilimeter(), te::qt::widgets::DataFrame::getDataRect(), te::ogr::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::pgis::GetEnvelope(), te::gm::GetGeomFromEnvelope(), getLowerLeft(), getLowerLeftX(), te::sqlite::GetRtreeFilter(), getWidth(), te::rst::Grid::Grid(), init(), intersection(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::widgets::RasterNavigatorWidget::onCoordTrackedChanged(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), operator=(), operator==(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::ogr::Transactor::query(), te::serialize::xml::SaveExtent(), touches(), te::qt::widgets::DataFrame::transformEnvelope(), Union(), te::ado::SQLVisitor::visit(), and within().
| double te::gm::Envelope::m_lly | 
Lower left corner y-coordinate.
Definition at line 345 of file Envelope.h.
Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), contains(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), disjoint(), distance(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::Canvas::draw(), te::ag::Canvas::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::qt::widgets::Info::drawGeometry(), te::qt::widgets::DataFrame::drawLayerSelection(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ClassifierWizardPage::drawSamples(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), te::rp::GeoMosaic::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), te::rp::TiePointsLocator::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocator::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::DataFrame::findDataUnitToMilimeter(), te::qt::widgets::DataFrame::getDataRect(), te::ogr::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::pgis::GetEnvelope(), te::gm::GetGeomFromEnvelope(), getHeight(), getLowerLeft(), getLowerLeftY(), te::sqlite::GetRtreeFilter(), init(), intersection(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::widgets::RasterNavigatorWidget::onCoordTrackedChanged(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), operator=(), operator==(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::ogr::Transactor::query(), te::serialize::xml::SaveExtent(), touches(), te::qt::widgets::DataFrame::transformEnvelope(), Union(), te::ado::SQLVisitor::visit(), and within().
| double te::gm::Envelope::m_urx | 
Upper right corner x-coordinate.
Definition at line 346 of file Envelope.h.
Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), contains(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), disjoint(), distance(), te::map::AbstractLayerRenderer::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::qt::widgets::Info::drawGeometry(), te::qt::widgets::DataFrame::drawLayerSelection(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ClassifierWizardPage::drawSamples(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), te::rp::GeoMosaic::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), te::rp::TiePointsLocator::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocator::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::DataFrame::findDataUnitToMilimeter(), te::ogr::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::pgis::GetEnvelope(), te::gm::GetGeomFromEnvelope(), te::sqlite::GetRtreeFilter(), getUpperRightX(), getWidth(), init(), intersection(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::widgets::RasterNavigatorWidget::onCoordTrackedChanged(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), operator=(), operator==(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::ogr::Transactor::query(), te::serialize::xml::SaveExtent(), touches(), te::qt::widgets::DataFrame::transformEnvelope(), Union(), te::ado::SQLVisitor::visit(), and within().
| double te::gm::Envelope::m_ury | 
Upper right corner y-coordinate.
Definition at line 347 of file Envelope.h.
Referenced by te::qt::widgets::MapDisplay::adjustExtent(), te::qt::widgets::Canvas::calcAspectRatio(), te::graph::BoxLoaderStrategy::calculateBox(), te::gm::CompoundCurve::computeMBR(), contains(), te::ogr::Convert2OGR(), te::pgis::Convert2PostGIS(), disjoint(), distance(), te::map::AbstractLayerRenderer::draw(), te::ag::Canvas::draw(), te::qt::widgets::ZoomInMapDisplayWidget::drawCursorPosition(), te::qt::af::MapDisplay::drawDataSet(), te::qt::widgets::PolygonAcquire::drawGeometry(), te::qt::widgets::Measure::drawGeometry(), te::qt::widgets::Info::drawGeometry(), te::qt::widgets::DataFrame::drawLayerSelection(), te::qt::widgets::MixtureModelWizardPage::drawMarks(), te::qt::widgets::RasterNavigatorWidget::drawRaster(), te::qt::widgets::ClassifierWizardPage::drawSamples(), te::qt::widgets::TiePointLocatorWidget::drawTiePoints(), Envelope(), te::rp::GeoMosaic::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::rp::SequenceMosaic::execute(), te::rp::TiePointsLocator::executeMatchingByCorrelationThreadEntry(), te::rp::TiePointsLocator::executeMatchingByEuclideanDistThreadEntry(), te::qt::widgets::DataFrame::findDataUnitToMilimeter(), te::ogr::Transactor::getDataSet(), te::sqlite::DataSourceTransactor::getDataSet(), te::ado::Transactor::getDataSet(), te::pgis::GetEnvelope(), te::gm::GetGeomFromEnvelope(), getHeight(), te::sqlite::GetRtreeFilter(), getUpperRightY(), te::rst::Grid::Grid(), init(), intersection(), intersects(), isValid(), te::qt::widgets::PanExtent::mouseMoveEvent(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay1_extentChanged(), te::qt::widgets::TiePointsLocatorDialog::on_mapDisplay2_extentChanged(), te::qt::widgets::MixtureModelDialog::on_mapDisplay_extentChanged(), te::qt::widgets::RasterNavigatorWidget::onCoordTrackedChanged(), te::qt::af::BaseApplication::onLayerPanToSelectedOnMapDisplayTriggered(), te::qt::widgets::ZoomInMapDisplayWidget::onMapDisplayExtentChanged(), operator=(), operator==(), te::sam::rtree::Index< DATATYPE, MAXNODES, MINNODES >::pickSeeds(), te::ogr::Transactor::query(), te::serialize::xml::SaveExtent(), touches(), te::qt::widgets::DataFrame::transformEnvelope(), Union(), te::ado::SQLVisitor::visit(), and within().