deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

Uses of Interface
org.deegree.geometry.Envelope

Packages that use Envelope
org.deegree.commons.dataaccess.shape   
org.deegree.commons.index   
org.deegree.commons.utils   
org.deegree.commons.utils.memory   
org.deegree.coverage   
org.deegree.coverage.raster Provides for simple and complex raster (grid coverages). 
org.deegree.coverage.raster.container   
org.deegree.coverage.raster.geom   
org.deegree.coverage.raster.io.grid   
org.deegree.coverage.raster.io.imageio.geotiff   
org.deegree.coverage.raster.utils   
org.deegree.crs The org.deegree.crs package contains all necessities to transform and project coordinates form one coordinates system into another. 
org.deegree.feature   
org.deegree.feature.persistence   
org.deegree.feature.persistence.memory   
org.deegree.feature.persistence.postgis   
org.deegree.feature.persistence.query   
org.deegree.feature.persistence.shape   
org.deegree.feature.persistence.simplesql   
org.deegree.filter.spatial   
org.deegree.geometry   
org.deegree.geometry.io   
org.deegree.geometry.standard   
org.deegree.geometry.standard.multi   
org.deegree.geometry.standard.primitive   
org.deegree.gml.feature   
org.deegree.gml.geometry   
org.deegree.gml.geometry.refs   
org.deegree.protocol.ows   
org.deegree.protocol.sos.filter   
org.deegree.protocol.wfs.getfeature   
org.deegree.protocol.wfs.lockfeature   
org.deegree.protocol.wms.client   
org.deegree.rendering.r2d   
org.deegree.rendering.r3d.model   
org.deegree.rendering.r3d.model.geometry   
org.deegree.rendering.r3d.opengl.rendering.dem.texturing   
org.deegree.rendering.r3d.opengl.rendering.model.geometry   
org.deegree.rendering.r3d.opengl.rendering.model.manager   
org.deegree.rendering.r3d.opengl.rendering.model.prototype   
 

Uses of Envelope in org.deegree.commons.dataaccess.shape
 

Methods in org.deegree.commons.dataaccess.shape that return Envelope
 Envelope SHPReader.getEnvelope()
           
 

Methods in org.deegree.commons.dataaccess.shape that return types with arguments of type Envelope
 Pair<ArrayList<Pair<Envelope,Long>>,Boolean> SHPReader.readEnvelopes()
          He Who Needs It As Double, is welcome to implement/copy it.
 

Methods in org.deegree.commons.dataaccess.shape with parameters of type Envelope
 LinkedList<Pair<Integer,Geometry>> SHPReader.query(Envelope bbox, boolean withGeometry, boolean exact)
           
 

Uses of Envelope in org.deegree.commons.index
 

Methods in org.deegree.commons.index with parameters of type Envelope
static float[] SpatialIndex.createEnvelope(Envelope validDomain)
          Creates float array out of an envelope (Geometry).
 boolean QTree.insert(Envelope envelope, T object)
           
abstract  boolean SpatialIndex.insert(Envelope envelope, T object)
          Add the given object to the spatial index using the given boundingbox
 boolean RTree.insert(Envelope envelope, T object)
           
 List<T> QTree.query(Envelope env)
           
abstract  Collection<T> SpatialIndex.query(Envelope envelope)
          Query the spatial index with the given envelope and return all objects which intersect with the given boundingbox.
 LinkedList<T> RTree.query(Envelope env)
           
 

Method parameters in org.deegree.commons.index with type arguments of type Envelope
 void QTree.insertBulk(List<Pair<Envelope,T>> listOfObjects)
           
abstract  void SpatialIndex.insertBulk(List<Pair<Envelope,T>> listOfObjects)
          Create the spatial index from the given list of envelope, objects tuples.
 void RTree.insertBulk(List<Pair<Envelope,T>> listOfObjects)
          Builds the index from the given objects with their envelope.
 

Constructors in org.deegree.commons.index with parameters of type Envelope
QTree(Envelope validDomain, int numberOfObjects)
           
RTree(Envelope rootEnvelope, int numberOfObjects)
           
 

Uses of Envelope in org.deegree.commons.utils
 

Methods in org.deegree.commons.utils that return Envelope
static Envelope GeometryUtils.createConvertedEnvelope(Envelope sourceEnvelope, CRS targetCRS)
          Converts the given Envelope into an envelope with the given coordinate system.
 

Methods in org.deegree.commons.utils with parameters of type Envelope
static double MapUtils.calcScaleWMS111(int mapWidth, int mapHeight, Envelope bbox, CoordinateSystem crs)
           
static double MapUtils.calcScaleWMS130(int mapWidth, int mapHeight, Envelope bbox, CoordinateSystem crs)
           
static Envelope GeometryUtils.createConvertedEnvelope(Envelope sourceEnvelope, CRS targetCRS)
          Converts the given Envelope into an envelope with the given coordinate system.
 

Uses of Envelope in org.deegree.commons.utils.memory
 

Methods in org.deegree.commons.utils.memory with parameters of type Envelope
static long AllocatedHeapMemory.sizeOfEnvelope(Envelope env, boolean asReference)
           
 

Uses of Envelope in org.deegree.coverage
 

Methods in org.deegree.coverage that return Envelope
 Envelope AbstractCoverage.getEnvelope()
           
 

Methods in org.deegree.coverage with parameters of type Envelope
protected  void AbstractCoverage.extendEnvelope(Envelope envelope)
          Extend the envelope of the coverage.
protected  void AbstractCoverage.setEnvelope(Envelope envelope)
           
 

Constructors in org.deegree.coverage with parameters of type Envelope
AbstractCoverage(Envelope envelope)
          Instantiate an AbstractCoverage with given envelope.
AbstractCoverage(Envelope envelope, SupplementProperties supplementProperties)
          Instantiate an AbstractCoverage with given envelope, rangeset and SupplementProperties.
 

Uses of Envelope in org.deegree.coverage.raster
 

Methods in org.deegree.coverage.raster that return Envelope
 Envelope TiledRaster.getEnvelope()
           
 Envelope MultiResolutionRaster.getEnvelope()
           
 

Methods in org.deegree.coverage.raster with parameters of type Envelope
protected  void AbstractRaster.checkBounds(Envelope envelope)
          Checks if the coverage contains the envelope.
 SimpleRaster SimpleRaster.createCompatibleSimpleRaster(RasterGeoReference rEnv, Envelope env)
          Creates a new empty SimpleRaster with same DataType and InterleaveType.
 SimpleRaster SimpleRaster.getSubRaster(Envelope envelope)
           
 MultiRangedRaster MultiRangedRaster.getSubRaster(Envelope env)
           
 TiledRaster TiledRaster.getSubRaster(Envelope env)
           
abstract  AbstractRaster AbstractRaster.getSubRaster(Envelope env)
          Returns a subset of the raster, note this is a view on the given raster.
 SimpleRaster SimpleRaster.getSubRaster(Envelope envelope, BandType[] bands)
           
 MultiRangedRaster MultiRangedRaster.getSubRaster(Envelope env, BandType[] bands)
           
 TiledRaster TiledRaster.getSubRaster(Envelope env, BandType[] bands)
           
abstract  AbstractRaster AbstractRaster.getSubRaster(Envelope env, BandType[] bands)
          Returns a subset of the raster, note this is a view on the given raster.
 TiledRaster TiledRaster.getSubRaster(Envelope env, BandType[] bands, RasterGeoReference.OriginLocation targetLocation)
          Get a subraster which has it's origin location at the given location.
 AbstractRaster MultiResolutionRaster.getSubset(Envelope envelope, double resolution)
          Returns a subset of the raster for a given resolution.
 void SimpleRaster.setSubRaster(Envelope env, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(Envelope env, AbstractRaster source)
           
 void TiledRaster.setSubRaster(Envelope envelope, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(Envelope env, AbstractRaster source)
          Sets the raster with data from source.
 void SimpleRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
 void TiledRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
          Sets a single band with data from source.
 AbstractRaster RasterTransformer.transform(AbstractRaster sourceRaster, Envelope dstEnvelope, int dstWidth, int dstHeight, InterpolationType interpolationType)
          Creates a transformed raster from a given source raster.
 

Constructors in org.deegree.coverage.raster with parameters of type Envelope
AbstractRaster(Envelope envelope)
          Instantiate an AbstractRaster with given envelope.
AbstractRaster(Envelope envelope, RasterGeoReference rasterReference)
          Instantiate an AbstractRaster with given envelope and raster envelope.
SimpleRaster(Envelope envelope, RasterGeoReference rasterReference)
          Create a SimpleRaster with no raster data but with an envelope and raster envelope.
SimpleRaster(RasterData raster, Envelope envelope, RasterGeoReference rasterReference)
          Creates a new SimpleRaster with given RasterData and Envelope
 

Uses of Envelope in org.deegree.coverage.raster.container
 

Methods in org.deegree.coverage.raster.container that return Envelope
 Envelope GriddedTileContainer.getEnvelope()
           
 Envelope IndexedMemoryTileContainer.getEnvelope()
           
 Envelope TileContainer.getEnvelope()
          Returns the envelope of all tiles in this container.
 Envelope MemoryTileContainer.getEnvelope()
           
protected  Envelope GriddedTileContainer.getTileEnvelope(int rowId, int columnId)
          Calculates the envelope for a tile at a given position in the grid.
 

Methods in org.deegree.coverage.raster.container with parameters of type Envelope
 List<AbstractRaster> GriddedTileContainer.getTiles(Envelope env)
           
 List<AbstractRaster> IndexedMemoryTileContainer.getTiles(Envelope env)
           
 List<AbstractRaster> TileContainer.getTiles(Envelope env)
          Returns all tiles that intersects the envelope.
 List<AbstractRaster> MemoryTileContainer.getTiles(Envelope env)
           
 

Constructors in org.deegree.coverage.raster.container with parameters of type Envelope
GriddedMemoryTileContainer(RasterGeoReference.OriginLocation location, Envelope envelope, int rows, int columns, int tileSamplesX, int tileSamplesY, AbstractRaster[] cells)
          The memory based gridded tile container.
GriddedTileContainer(RasterGeoReference.OriginLocation location, Envelope envelope, int rows, int columns, int tileSamplesX, int tileSamplesY)
          Creates a new GriddedTileContainer instances.
IndexedMemoryTileContainer(Envelope domain, RasterGeoReference rasterReference, int objectsInLeaf)
          Uses a QTree as a spatial index.
MemoryTileContainer(RasterGeoReference geoRasterRef, Envelope envelope)
          Creates a MemoryTileContainer with no tiles.
MemoryTileContainer(RasterGeoReference geoRasterRef, Envelope envelope, RasterDataInfo rasterDataInfo)
           
 

Uses of Envelope in org.deegree.coverage.raster.geom
 

Methods in org.deegree.coverage.raster.geom that return Envelope
 Envelope RasterGeoReference.getEnvelope(int width, int height, CRS crs)
          Returns an Envelope for a raster with given size.
 Envelope RasterGeoReference.getEnvelope(RasterGeoReference.OriginLocation targetLocation, int width, int height, CRS crs)
          Returns an Envelope for a raster with given size.
 Envelope RasterGeoReference.getEnvelope(RasterGeoReference.OriginLocation targetLocation, RasterRect rasterRect, CRS crs)
          Returns an Envelope for a raster with given size and given x,y raster location.
 Envelope RasterGeoReference.getEnvelope(RasterRect rasterRect, CRS crs)
          Returns an Envelope for a raster with given size and given x,y raster location.
 Envelope RasterGeoReference.relocateEnvelope(RasterGeoReference.OriginLocation targetLocation, Envelope envelope)
          Relocates the given minimum and maximum points of the given envelope to the target origin location definition.
 

Methods in org.deegree.coverage.raster.geom with parameters of type Envelope
 RasterRect RasterGeoReference.convertEnvelopeToRasterCRS(Envelope envelope)
          Converts an envelope in world coordinates to raster coordinates, note the envelope in world coordinates is defined over min/max (lower left/upper right), whereas a RasterRect is defined as min(upperleft) with a width and height.
static RasterGeoReference RasterGeoReference.create(RasterGeoReference.OriginLocation location, Envelope envelope, int width, int height)
          Create a raster reference which has it's origin at the min[0] and max[1] of the given Envelope.
 RasterGeoReference RasterGeoReference.createRelocatedReference(Envelope envelope)
          Returns new RasterGeoReference with the origin set to the min[0],max[1] of the envelope but other values are taken from this instance.
 RasterGeoReference RasterGeoReference.createRelocatedReference(RasterGeoReference.OriginLocation targetLocation, Envelope envelope)
          Returns new RasterGeoReference with the origin set to the min[0],max[1] of the envelope and the OriginLocation to the given one.
 int[] RasterGeoReference.getSize(Envelope env)
          Returns the size in pixel of a raster that extends within given Envelope.
 Envelope RasterGeoReference.relocateEnvelope(RasterGeoReference.OriginLocation targetLocation, Envelope envelope)
          Relocates the given minimum and maximum points of the given envelope to the target origin location definition.
 

Uses of Envelope in org.deegree.coverage.raster.io.grid
 

Methods in org.deegree.coverage.raster.io.grid that return Envelope
 Envelope GridReader.getEnvelope()
           
 Envelope GridMetaInfoFile.getEnvelope(RasterGeoReference.OriginLocation location)
           
protected  Envelope GridWriter.getTileEnvelope(int column, int row)
          Calculates the envelope for a tile at a given position in the grid.
protected  Envelope GridReader.getTileEnvelope(int column, int row)
          Calculates the envelope for a tile at a given position in the grid.
 

Methods in org.deegree.coverage.raster.io.grid with parameters of type Envelope
 void GridMetaInfoFile.setEnvelope(Envelope envelope)
          Set the envelope
 

Constructors in org.deegree.coverage.raster.io.grid with parameters of type Envelope
GridWriter(int targetColumns, int targetRows, Envelope rasterEnvelope, RasterGeoReference geoRef, File gridFile, RasterDataInfo dataInfo)
          Create a gridfile writer with the given parameters.
 

Uses of Envelope in org.deegree.coverage.raster.io.imageio.geotiff
 

Methods in org.deegree.coverage.raster.io.imageio.geotiff that return Envelope
 Envelope GeoTiffReader.getBoundingBox()
           
 

Constructors in org.deegree.coverage.raster.io.imageio.geotiff with parameters of type Envelope
GeoTiffWriter(BufferedImage image, Envelope envelope, double resx, double resy, CRS crs)
          creates an GeoTiffWriter instance from an java.awt.image.
GeoTiffWriter(BufferedImage image, Envelope envelope, double resx, double resy, CRS crs, double offset, double scaleFactor)
          creates an GeoTiffWriter instance from an java.awt.image.
 

Uses of Envelope in org.deegree.coverage.raster.utils
 

Methods in org.deegree.coverage.raster.utils with parameters of type Envelope
static SimpleRaster RasterFactory.createEmptyRaster(RasterDataInfo rdi, Envelope worldEnvelope, RasterGeoReference rasterGeoReference)
          Creates a new Raster data object from the given world envelope, a raster reference and the data info object (holding information about type, size etc...).
static SimpleRaster RasterFactory.createEmptyRaster(RasterDataInfo rdi, Envelope worldEnvelope, RasterGeoReference rasterGeoReference, RasterReader reader, boolean addToCache, RasterIOOptions options)
          Creates a new Raster data object from the given world envelope, a raster reference and the data info object (holding information about type, size etc...).
static AbstractRaster RasterFactory.createRasterFromImage(RenderedImage image, Envelope envelope, RasterGeoReference.OriginLocation originLocation)
          Creates a simple raster from a given BufferedImage and sets the geo reference to the given envelope.
static AbstractRaster RasterFactory.createRasterFromImage(RenderedImage image, Envelope envelope, RasterGeoReference.OriginLocation originLocation, RasterIOOptions options)
          Creates a simple raster from a given BufferedImage and sets the geo reference to the given envelope.
 

Uses of Envelope in org.deegree.crs
 

Methods in org.deegree.crs that return Envelope
 Envelope CRS.getAreaOfUse()
          Returns the area of use, i.e. the domain where this CRSIdentifiable is valid.
 

Uses of Envelope in org.deegree.feature
 

Methods in org.deegree.feature that return Envelope
protected  Envelope AbstractFeatureCollection.calcEnvelope()
           
protected  Envelope AbstractFeature.calcEnvelope()
          Helper method for calculating the envelope of a feature.
 Envelope GenericSimpleFeature.getEnvelope()
           
 Envelope Feature.getEnvelope()
          Returns the envelope of the feature.
 Envelope AbstractFeature.getEnvelope()
           
 

Uses of Envelope in org.deegree.feature.persistence
 

Methods in org.deegree.feature.persistence that return Envelope
 Envelope FeatureStore.getEnvelope(QName ftName)
          Returns the envelope for all stored features of the given type.
 

Uses of Envelope in org.deegree.feature.persistence.memory
 

Methods in org.deegree.feature.persistence.memory that return Envelope
 Envelope MemoryFeatureStore.getEnvelope(QName ftName)
           
 

Uses of Envelope in org.deegree.feature.persistence.postgis
 

Fields in org.deegree.feature.persistence.postgis with type parameters of type Envelope
(package private)  Map<QName,Envelope> PostGISFeatureStore.ftNameToBBox
           
 

Methods in org.deegree.feature.persistence.postgis that return Envelope
 Envelope PostGISFeatureStore.getEnvelope(QName ftName)
           
 

Methods in org.deegree.feature.persistence.postgis with parameters of type Envelope
(package private)  void PostGISFeatureStore.setEnvelope(FeatureType ft, Envelope ftEnv)
          Sets the envelope for the given feature type.
(package private)  org.postgis.PGgeometry PostGISFeatureStore.toPGPolygon(Envelope envelope, int srid)
           
 

Uses of Envelope in org.deegree.feature.persistence.query
 

Constructors in org.deegree.feature.persistence.query with parameters of type Envelope
Query(QName ftName, Envelope looseBbox, Filter filter, boolean withGeometries, int scale)
          Creates a new Query instance.
 

Uses of Envelope in org.deegree.feature.persistence.shape
 

Methods in org.deegree.feature.persistence.shape that return Envelope
 Envelope ShapeFeatureStore.getEnvelope(QName ftName)
           
 

Uses of Envelope in org.deegree.feature.persistence.simplesql
 

Methods in org.deegree.feature.persistence.simplesql that return Envelope
 Envelope SimpleSQLDatastore.getEnvelope(QName ftName)
           
 

Uses of Envelope in org.deegree.filter.spatial
 

Methods in org.deegree.filter.spatial that return Envelope
 Envelope BBOX.getBoundingBox()
          Returns the envelope which is tested for intersection.
 

Constructors in org.deegree.filter.spatial with parameters of type Envelope
BBOX(Envelope bbox)
          Creates a new BBOX instance which uses the default geometry property and the specified bounding box.
BBOX(PropertyName propName, Envelope bbox)
          Creates a new BBOX instance which uses the specified geometry property and bounding box.
 

Uses of Envelope in org.deegree.geometry
 

Methods in org.deegree.geometry that return Envelope
 Envelope SimpleGeometryFactory.createEnvelope(double[] min, double[] max, CRS crs)
          Creates an Envelope.
 Envelope SimpleGeometryFactory.createEnvelope(double minx, double miny, double maxx, double maxy, CRS crs)
          Creates an Envelope in 2D space.
 Envelope SimpleGeometryFactory.createEnvelope(List<Double> lowerCorner, List<Double> upperCorner, CRS crs)
          Create an Envelope from a list of Doubles.
 Envelope Geometry.getEnvelope()
          Returns the minimal bounding box of the geometry.
 Envelope Envelope.merge(Envelope other)
          Merges this envelope with another envelope into a new one.
 

Methods in org.deegree.geometry with parameters of type Envelope
 Envelope Envelope.merge(Envelope other)
          Merges this envelope with another envelope into a new one.
 

Uses of Envelope in org.deegree.geometry.io
 

Methods in org.deegree.geometry.io with parameters of type Envelope
 void WKTWriter.writeEnvelope(Envelope envelope, Writer writer)
          TODO also for 3D
 

Uses of Envelope in org.deegree.geometry.standard
 

Classes in org.deegree.geometry.standard that implement Envelope
 class DefaultEnvelope
          Default implementation of Envelope.
 

Methods in org.deegree.geometry.standard that return Envelope
 Envelope DefaultEnvelope.getEnvelope()
           
 Envelope AbstractDefaultGeometry.getEnvelope()
           
 Envelope DefaultEnvelope.merge(Envelope other)
           
 

Methods in org.deegree.geometry.standard with parameters of type Envelope
 Envelope DefaultEnvelope.merge(Envelope other)
           
 

Uses of Envelope in org.deegree.geometry.standard.multi
 

Methods in org.deegree.geometry.standard.multi that return Envelope
 Envelope DefaultMultiGeometry.getEnvelope()
           
 

Uses of Envelope in org.deegree.geometry.standard.primitive
 

Methods in org.deegree.geometry.standard.primitive that return Envelope
 Envelope DefaultOrientableSurface.getEnvelope()
           
 Envelope DefaultOrientableCurve.getEnvelope()
           
 Envelope DefaultPoint.getEnvelope()
           
 

Uses of Envelope in org.deegree.gml.feature
 

Fields in org.deegree.gml.feature with type parameters of type Envelope
static PropertyType<Envelope> StandardGMLFeatureProps.PT_BOUNDED_BY_GML2
          GML 2 standard property type 'gml:boundedBy'
static PropertyType<Envelope> StandardGMLFeatureProps.PT_BOUNDED_BY_GML31
          GML 3.0/3.1 standard property type 'gml:boundedBy'
static PropertyType<Envelope> StandardGMLFeatureProps.PT_BOUNDED_BY_GML32
          GML 3.2 standard property type 'gml:boundedBy'
 

Methods in org.deegree.gml.feature that return Envelope
 Envelope StandardGMLFeatureProps.getBoundedBy()
          Returns the boundedBy property value.
 Envelope FeatureReference.getEnvelope()
           
 

Methods in org.deegree.gml.feature with parameters of type Envelope
 void StandardGMLFeatureProps.setBoundedBy(Envelope boundedBy)
          Sets the value for the boundedBy property.
 

Constructors in org.deegree.gml.feature with parameters of type Envelope
StandardGMLFeatureProps(Object[] metadata, StringOrRef description, CodeType identifier, CodeType[] names, Envelope boundedBy)
          Creates a new StandardGMLFeatureProps instance.
 

Uses of Envelope in org.deegree.gml.geometry
 

Methods in org.deegree.gml.geometry that return Envelope
 Envelope GML2GeometryReader.parseEnvelope(XMLStreamReaderWrapper xmlStream)
           
 Envelope GML3GeometryReader.parseEnvelope(XMLStreamReaderWrapper xmlStream)
          Returns the object representation of a gml:Envelope element.
 Envelope GML2GeometryReader.parseEnvelope(XMLStreamReaderWrapper xmlStream, CRS defaultCRS)
           
 Envelope GMLGeometryReader.parseEnvelope(XMLStreamReaderWrapper xmlStream, CRS defaultCRS)
           
 Envelope GML3GeometryReader.parseEnvelope(XMLStreamReaderWrapper xmlStream, CRS defaultCRS)
          Returns the object representation of a gml:Envelope element.
 

Methods in org.deegree.gml.geometry with parameters of type Envelope
 void GML2GeometryWriter.exportEnvelope(Envelope envelope)
           
 void GMLGeometryWriter.exportEnvelope(Envelope envelope)
           
 void GML3GeometryWriter.exportEnvelope(Envelope envelope)
          Exporting an Envelope via the XMLStreamWriter given when the class was constructed
 

Uses of Envelope in org.deegree.gml.geometry.refs
 

Methods in org.deegree.gml.geometry.refs that return Envelope
 Envelope GeometryReference.getEnvelope()
           
 

Uses of Envelope in org.deegree.protocol.ows
 

Methods in org.deegree.protocol.ows that return Envelope
 Envelope OWSCommonXMLAdapter.parseBoundingBoxType(org.apache.axiom.om.OMElement boundingBoxDataElement, CRS defaultCRS)
          Parses the given element of type ows:BoundingBoxType.
 

Methods in org.deegree.protocol.ows with parameters of type Envelope
static void OWSCommonXMLAdapter.exportBoundingBoxType(XMLStreamWriter writer, Envelope bbox)
          Exports an Envelope as a ows:BoundingBoxType.
 

Uses of Envelope in org.deegree.protocol.sos.filter
 

Methods in org.deegree.protocol.sos.filter that return Envelope
 Envelope SpatialBBOXFilter.getBBOX()
           
 

Constructors in org.deegree.protocol.sos.filter with parameters of type Envelope
SpatialBBOXFilter(Envelope bbox)
           
 

Uses of Envelope in org.deegree.protocol.wfs.getfeature
 

Methods in org.deegree.protocol.wfs.getfeature that return Envelope
 Envelope BBoxQuery.getBBox()
          Returns the bounding box constraint.
 

Constructors in org.deegree.protocol.wfs.getfeature with parameters of type Envelope
BBoxQuery(String handle, TypeName[] typeNames, String featureVersion, CRS srsName, PropertyName[][] propertyNames, XLinkPropertyName[][] xLinkPropertyNames, SortProperty[] sortBy, Envelope bbox)
          Creates a new BBoxQuery instance.
 

Uses of Envelope in org.deegree.protocol.wfs.lockfeature
 

Methods in org.deegree.protocol.wfs.lockfeature that return Envelope
 Envelope BBoxLock.getBBox()
           
 

Constructors in org.deegree.protocol.wfs.lockfeature with parameters of type Envelope
BBoxLock(Envelope bbox, TypeName[] typeNames)
           
 

Uses of Envelope in org.deegree.protocol.wms.client
 

Methods in org.deegree.protocol.wms.client that return Envelope
 Envelope WMSClient111.getBoundingBox(String srs, List<String> layers)
           
 Envelope WMSClient111.getBoundingBox(String srs, String layer)
           
 Envelope WMSClient111.getLatLonBoundingBox(List<String> layers)
           
 Envelope WMSClient111.getLatLonBoundingBox(String layer)
           
 

Methods in org.deegree.protocol.wms.client with parameters of type Envelope
 Pair<BufferedImage,String> WMSClient111.getMap(List<String> layers, int width, int height, Envelope bbox, CRS srs, String format, boolean transparent, boolean errorsInImage, int timeout, boolean validate, List<String> validationErrors)
           
 Pair<SimpleRaster,String> WMSClient111.getMapAsSimpleRaster(List<String> layers, int width, int height, Envelope bbox, CRS srs, String format, boolean transparent, boolean errorsInImage, int timeout, boolean validate, List<String> validationErrors)
           
 

Uses of Envelope in org.deegree.rendering.r2d
 

Constructors in org.deegree.rendering.r2d with parameters of type Envelope
Java2DRasterRenderer(Graphics2D graphics, int width, int height, Envelope bbox)
           
Java2DRenderer(Graphics2D graphics, int width, int height, Envelope bbox)
           
Java2DRenderer(Graphics2D graphics, int width, int height, Envelope bbox, double pixelSize)
           
 

Uses of Envelope in org.deegree.rendering.r3d.model
 

Methods in org.deegree.rendering.r3d.model that return Envelope
 Envelope WorldObject.getBbox()
           
 

Methods in org.deegree.rendering.r3d.model with parameters of type Envelope
 void WorldObject.setBbox(Envelope bbox)
           
 

Constructors in org.deegree.rendering.r3d.model with parameters of type Envelope
WorldObject(String id, String time, Envelope bbox, QM[] qualityLevels)
           
WorldObject(String id, String time, Envelope bbox, QM[] qualityLevels, String name, String type, String externalReference)
           
 

Uses of Envelope in org.deegree.rendering.r3d.model.geometry
 

Constructors in org.deegree.rendering.r3d.model.geometry with parameters of type Envelope
WorldGeometryObject(String id, String time, Envelope bbox, GeometryQualityModel[] qualityLevels)
           
WorldGeometryObject(String id, String time, Envelope bbox, int levels)
          Creates a new WorldGeometryObject with given number of data quality levels (LOD)
 

Uses of Envelope in org.deegree.rendering.r3d.opengl.rendering.dem.texturing
 

Methods in org.deegree.rendering.r3d.opengl.rendering.dem.texturing that return Envelope
 Envelope RasterAPITextureTileProvider.getEnvelope()
           
 Envelope WMSTextureTileProvider.getEnvelope()
           
 Envelope TextureTileProvider.getEnvelope()
           
 Envelope StyledGeometryTTProvider.getEnvelope()
           
 

Uses of Envelope in org.deegree.rendering.r3d.opengl.rendering.model.geometry
 

Constructors in org.deegree.rendering.r3d.opengl.rendering.model.geometry with parameters of type Envelope
WorldRenderableObject(String id, String time, Envelope bbox, int levels)
          Creates a new WorldRenderableObject with given number of data quality levels (LOD)
WorldRenderableObject(String id, String time, Envelope bbox, RenderableQualityModel[] qualityLevels)
           
 

Uses of Envelope in org.deegree.rendering.r3d.opengl.rendering.model.manager
 

Methods in org.deegree.rendering.r3d.opengl.rendering.model.manager that return Envelope
 Envelope RenderableManager.getValidDomain()
           
 

Methods in org.deegree.rendering.r3d.opengl.rendering.model.manager with parameters of type Envelope
 List<T> RenderableManager.getObjects(Envelope env)
           
 boolean QTModelScene.insert(Envelope envelope, T object)
          This method uses the envelope of the object instead of the given envelope;
 void RenderableManager.setValidDomain(Envelope newDomain)
          (Re) set the valid domain of this renderer.
 

Constructors in org.deegree.rendering.r3d.opengl.rendering.model.manager with parameters of type Envelope
BuildingRenderer(Envelope sceneDomain, int numberOfObjectsInLeaf, DirectGeometryBuffer geometryBuffer, double maxPixelError, LODSwitcher levels)
           
QTModelScene(Envelope validDomain, int numberOfObjects, double maxPixelError)
           
RenderableManager(Envelope validDomain)
           
RenderableManager(Envelope validDomain, int numberOfObjectsInLeaf, double maxPixelError)
           
TreeRenderer(Envelope validDomain, int numberOfObjectsInLeaf, double maxPixelError)
           
 

Uses of Envelope in org.deegree.rendering.r3d.opengl.rendering.model.prototype
 

Constructors in org.deegree.rendering.r3d.opengl.rendering.model.prototype with parameters of type Envelope
RenderablePrototype(String id, String time, Envelope bbox)
           
RenderablePrototype(String id, String time, Envelope bbox, RenderableQualityModel qualityLevel)
           
 


deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org

]]>