Uses of Interface
org.deegree.geometry.Geometry

Packages that use Geometry
org.deegree.feature   
org.deegree.feature.persistence.shape   
org.deegree.feature.persistence.sql   
org.deegree.feature.types.property   
org.deegree.filter   
org.deegree.filter.spatial   
org.deegree.filter.utils   
org.deegree.geometry   
org.deegree.geometry.composite   
org.deegree.geometry.io   
org.deegree.geometry.linearization   
org.deegree.geometry.multi   
org.deegree.geometry.primitive   
org.deegree.geometry.refs   
org.deegree.geometry.standard   
org.deegree.geometry.standard.composite   
org.deegree.geometry.standard.multi   
org.deegree.geometry.standard.primitive   
org.deegree.geometry.utils   
org.deegree.geometry.validation   
org.deegree.gml   
org.deegree.gml.geometry   
org.deegree.gml.utils   
org.deegree.metadata.ebrim   
org.deegree.rendering.r2d   
org.deegree.services.wps.provider.sextante   
org.deegree.sqldialect.filter.expression   
org.deegree.sqldialect.filter.mssql   
org.deegree.sqldialect.oracle   
org.deegree.sqldialect.oracle.sdo   
org.deegree.sqldialect.postgis   
org.deegree.style.se.unevaluated   
org.deegree.wps.jts   
 

Uses of Geometry in org.deegree.feature
 

Method parameters in org.deegree.feature with type arguments of type Geometry
static void Features.findFeaturesAndGeometries(TypedObjectNode node, Set<Geometry> geometries, Set<Feature> features, Set<String> fids, Set<String> gids)
          Determines all Feature and Geometry objects contained in the given TypedObjectNode and their ids.
 

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

Methods in org.deegree.feature.persistence.shape that return Geometry
 Geometry SHPReader.readGeometry(long ptr)
          Returns the geometry entry stored at the given position.
 

Methods in org.deegree.feature.persistence.shape that return types with arguments of type Geometry
 LinkedList<Pair<Integer,Geometry>> SHPReader.query(Envelope bbox, boolean withGeometry, boolean exact)
           
 

Uses of Geometry in org.deegree.feature.persistence.sql
 

Methods in org.deegree.feature.persistence.sql that return Geometry
static Geometry SQLFeatureStore.getCompatibleGeometry(Geometry literal, ICRS crs)
          Returns a transformed version of the given Geometry in the specified CRS.
 

Methods in org.deegree.feature.persistence.sql with parameters of type Geometry
static Geometry SQLFeatureStore.getCompatibleGeometry(Geometry literal, ICRS crs)
          Returns a transformed version of the given Geometry in the specified CRS.
 

Uses of Geometry in org.deegree.feature.types.property
 

Methods in org.deegree.feature.types.property that return types with arguments of type Geometry
 Class<? extends Geometry> GeometryPropertyType.GeometryType.getJavaType()
           
 

Methods in org.deegree.feature.types.property with parameters of type Geometry
 boolean GeometryPropertyType.GeometryType.isCompatible(Geometry geometry)
           
 

Uses of Geometry in org.deegree.filter
 

Methods in org.deegree.filter that return Geometry
static Geometry[] Filters.getGeometries(Filter filter)
          Returns all Geometry-values contained in the given Filter (taking nesting into account).
 

Uses of Geometry in org.deegree.filter.spatial
 

Methods in org.deegree.filter.spatial that return Geometry
protected  Geometry SpatialOperator.checkGeometryOrNull(TypedObjectNode value)
          Performs a checked cast to Geometry.
protected  Geometry SpatialOperator.getCompatibleGeometry(Geometry param, Geometry literal)
          Returns a version of the given geometry literal that has the same srs as the given geometry parameter.
 Geometry Intersects.getGeometry()
           
 Geometry Contains.getGeometry()
           
 Geometry Disjoint.getGeometry()
           
 Geometry Within.getGeometry()
           
 Geometry DWithin.getGeometry()
           
 Geometry Overlaps.getGeometry()
           
 Geometry Beyond.getGeometry()
           
 Geometry Touches.getGeometry()
           
 Geometry Crosses.getGeometry()
           
 Geometry Equals.getGeometry()
           
 

Methods in org.deegree.filter.spatial with parameters of type Geometry
protected  Geometry SpatialOperator.getCompatibleGeometry(Geometry param, Geometry literal)
          Returns a version of the given geometry literal that has the same srs as the given geometry parameter.
 

Constructors in org.deegree.filter.spatial with parameters of type Geometry
Beyond(Expression propName, Geometry geometry, Measure distance)
           
Contains(Expression param1, Geometry param2)
           
Crosses(Expression propName, Geometry geometry)
           
Disjoint(Expression propName, Geometry geometry)
           
DWithin(Expression propName, Geometry geometry, Measure distance)
           
Equals(Expression propName, Geometry geometry)
           
Intersects(Expression propName, Geometry geometry)
           
Overlaps(Expression propName, Geometry geometry)
           
Touches(Expression propName, Geometry geometry)
           
Within(Expression param1, Geometry param2)
           
 

Uses of Geometry in org.deegree.filter.utils
 

Methods in org.deegree.filter.utils that return Geometry
static Geometry FilterUtils.getGeometryValue(TypedObjectNode node)
           
 

Uses of Geometry in org.deegree.geometry
 

Subinterfaces of Geometry in org.deegree.geometry
 interface Envelope
          Axis-parallel bounding box.
 

Methods in org.deegree.geometry with type parameters of type Geometry
<T extends Geometry>
T
GeometryTransformer.transform(T geo)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
<T extends Geometry>
T
GeometryTransformer.transform(T geo, ICRS sourceCRS)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
<T extends Geometry>
T
GeometryTransformer.transform(T geom, ICRS sourceCRS, boolean testValidArea, List<Transformation> toBeUsedTransformations)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
 

Methods in org.deegree.geometry that return Geometry
static Geometry Geometries.copyDeep(Geometry geom)
          Creates a deep copy of the given Geometry object.
 Geometry Geometry.getBuffer(Measure distance)
          Return a new Geometry that contains all points with a distance from this Geometry that is less than or equal to the specified distance.
 Geometry Geometry.getConvexHull()
          Returns the convex hull of the geometry.
 Geometry Geometry.getDifference(Geometry geometry)
          Returns the set-theoretic difference of this and the passed Geometry.
 Geometry Geometry.getIntersection(Geometry geometry)
          Returns the set-theoretic intersection of this and the passed Geometry.
 Geometry Geometry.getUnion(Geometry geometry)
          Returns the set-theoretic union of this and the passed Geometry.
 Geometry GeometryInspector.inspect(Geometry geom)
          Invokes the inspection of the given Geometry.
protected  Geometry SimpleGeometryFactory.inspect(Geometry geom)
           
 Geometry SFSProfiler.simplify(GeometricPrimitive geometry)
          Simplifies the given GeometricPrimitive.
 Geometry SFSProfiler.simplify(Geometry geometry)
          Simplifies the given Geometry.
 Geometry SFSProfiler.simplify(Surface geometry)
          Simplifies the given Surface.
 Geometry GeometryTransformer.transform(Geometry geo, boolean testValidDomain)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
 Geometry GeometryTransformer.transform(Geometry geo, String sourceCRS)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
 

Methods in org.deegree.geometry that return types with arguments of type Geometry
 MultiGeometry<Geometry> SimpleGeometryFactory.createMultiGeometry(String id, ICRS crs, List<Geometry> members)
          Creates an untyped multi geometry from a list of Geometrys.
 

Methods in org.deegree.geometry with parameters of type Geometry
 boolean Geometry.contains(Geometry geometry)
          Tests whether this geometry contains the specified geometry.
static Geometry Geometries.copyDeep(Geometry geom)
          Creates a deep copy of the given Geometry object.
 boolean Geometry.crosses(Geometry geometry)
          Tests whether this geometry crosses the specified geometry.
 boolean Geometry.equals(Geometry geometry)
          Tests whether this geometry is equal to the specified geometry.
 Geometry Geometry.getDifference(Geometry geometry)
          Returns the set-theoretic difference of this and the passed Geometry.
 Measure Geometry.getDistance(Geometry geometry, Unit requestedUnits)
          Returns the minimum distance between this and the specified geometry.
 Geometry Geometry.getIntersection(Geometry geometry)
          Returns the set-theoretic intersection of this and the passed Geometry.
 Geometry Geometry.getUnion(Geometry geometry)
          Returns the set-theoretic union of this and the passed Geometry.
 Geometry GeometryInspector.inspect(Geometry geom)
          Invokes the inspection of the given Geometry.
protected  Geometry SimpleGeometryFactory.inspect(Geometry geom)
           
 boolean Geometry.intersects(Geometry geometry)
          Tests whether this geometry intersects the specified geometry.
 boolean Geometry.isBeyond(Geometry geometry, Measure distance)
          Tests whether this geometry is beyond a specified distance of a second geometry.
 boolean Geometry.isDisjoint(Geometry geometry)
          Tests whether this geometry is disjoint from the specified geometry.
 boolean Geometry.isWithin(Geometry geometry)
          tests whether the value of a geometric is topological located within this geometry.
 boolean Geometry.isWithinDistance(Geometry geometry, Measure distance)
          Tests whether this geometry is within a specified distance of a second geometry.
 boolean Geometry.overlaps(Geometry geometry)
          Tests whether this geometry overlaps the specified geometry.
 Geometry SFSProfiler.simplify(Geometry geometry)
          Simplifies the given Geometry.
 boolean Geometry.touches(Geometry geometry)
          Tests whether this geometry touches the specified geometry.
 Geometry GeometryTransformer.transform(Geometry geo, boolean testValidDomain)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
 Geometry GeometryTransformer.transform(Geometry geo, String sourceCRS)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
 

Method parameters in org.deegree.geometry with type arguments of type Geometry
 MultiGeometry<Geometry> SimpleGeometryFactory.createMultiGeometry(String id, ICRS crs, List<Geometry> members)
          Creates an untyped multi geometry from a list of Geometrys.
 

Uses of Geometry in org.deegree.geometry.composite
 

Subinterfaces of Geometry in org.deegree.geometry.composite
 interface CompositeCurve
          A CompositeCurve is a geometry with the same topological properties as a (primitive) Curve.
 interface CompositeGeometry<T extends GeometricPrimitive>
          A CompositeGeometry is a geometric complex with underlying core geometries that are (as a whole) isomorphic to a geometry primitive.
 interface CompositeSolid
          CompositeSolid is a geometry type with the same geometric properties as the (primitive) Solid type.
 interface CompositeSurface
          CompositeSurface is a geometry type with the same geometric properties as the (primitive) Surface type.
 

Uses of Geometry in org.deegree.geometry.io
 

Methods in org.deegree.geometry.io that return Geometry
static Geometry WKBReader.read(byte[] wkb, ICRS crs)
           
static Geometry WKBReader.read(InputStream is, ICRS crs)
           
 Geometry WKTReader.read(Reader reader)
           
 Geometry WKTReader.read(String wkt)
           
 

Methods in org.deegree.geometry.io with parameters of type Geometry
static String WKTWriter.write(Geometry geom)
          Export the given geometry to wkt, without using any WKTWriter.WKTFlags.
static byte[] WKBWriter.write(Geometry geom)
           
static void WKBWriter.write(Geometry geom, OutputStream os)
           
static void WKTWriter.write(Geometry geom, Writer writer)
          Export the given geometry to wkt, without using any WKTWriter.WKTFlags.
 void WKTWriter.writeGeometry(Geometry geometry, Writer writer)
           
 

Method parameters in org.deegree.geometry.io with type arguments of type Geometry
 void WKTWriter.writeMultiGeometry(MultiGeometry<? extends Geometry> geometry, Writer writer)
          Writes a multiGeometry.
 void WKTWriter.writeMultiGeometryGeometry(MultiGeometry<? extends Geometry> geometry, Writer writer)
          Writes the multiGeometry.
 

Uses of Geometry in org.deegree.geometry.linearization
 

Methods in org.deegree.geometry.linearization with type parameters of type Geometry
<T extends Geometry>
T
GeometryLinearizer.linearize(T geom, LinearizationCriterion crit)
          Returns a linearized version of the given Geometry.
 

Uses of Geometry in org.deegree.geometry.multi
 

Classes in org.deegree.geometry.multi with type parameters of type Geometry
 interface MultiGeometry<T extends Geometry>
          Basic aggregation type for Geometry objects.
 

Subinterfaces of Geometry in org.deegree.geometry.multi
 interface MultiCurve<T extends Curve>
          Specialised aggregation type for Curve objects.
 interface MultiGeometry<T extends Geometry>
          Basic aggregation type for Geometry objects.
 interface MultiLineString
          Specialised aggregation type for LineString objects.
 interface MultiPoint
          Specialised aggregation type for Point objects.
 interface MultiPolygon
          Specialised aggregation type for Polygon objects.
 interface MultiSolid
          Specialised aggregation type for Solid objects.
 interface MultiSurface<T extends Surface>
          Specialised aggregation type for Surface objects.
 

Uses of Geometry in org.deegree.geometry.primitive
 

Subinterfaces of Geometry in org.deegree.geometry.primitive
 interface Curve
          Curve instances are 1D-geometries that consist of a number of curve segments.
 interface GeometricPrimitive
          A GeometricPrimitive is a contigous geometry with single dimensionality.
 interface LinearRing
          TODO add documentation here
 interface LineString
          The most common case of a Curve: consist of just one curve segment with linear interpolation between the control points.
 interface OrientableCurve
          An OrientableCurve consists of a wrapped base Curve and an additional orientation.
 interface OrientableSurface
          An OrientableSurface consists of a wrapped base Surface and an additional orientation.
 interface Point
          0-dimensional primitive.
 interface Polygon
          A Surface that consists of one single planar patch (a PolygonPatch).
 interface PolyhedralSurface
          A Surface that consists only of PolygonPatch patches.
 interface Ring
          A Ring is a composition of Curves that forms a closed loop.
 interface Solid
          Solid instances are 3D-geometries that ...
 interface Surface
          Surface instances are 2D-geometries that consist of an arbitrary number of surface patches which are not necessarily planar.
 interface Tin
          A TriangulatedSurface that uses the Delaunay algorithm or a similar algorithm complemented with consideration of breaklines, stoplines, and maximum length of triangle sides.
 interface TriangulatedSurface
          A Surface that consists only of Triangle patches.
 

Uses of Geometry in org.deegree.geometry.refs
 

Classes in org.deegree.geometry.refs with type parameters of type Geometry
 class GeometryReference<T extends Geometry>
          Represents a reference to the GML representation of a geometry, which is usually expressed using an xlink:href attribute in GML (may be document-local or remote).
 

Classes in org.deegree.geometry.refs that implement Geometry
 class CurveReference<T extends Curve>
          The class TODO add class documentation here.
 class GeometricPrimitiveReference<T extends GeometricPrimitive>
          The class TODO add class documentation here.
 class GeometryReference<T extends Geometry>
          Represents a reference to the GML representation of a geometry, which is usually expressed using an xlink:href attribute in GML (may be document-local or remote).
 class LineStringReference
          The class TODO add class documentation here.
 class PointReference
          The class TODO add class documentation here.
 class PolygonReference
          The class TODO add class documentation here.
 class SolidReference<T extends Solid>
          The class TODO add class documentation here.
 class SurfaceReference<T extends Surface>
          The class TODO add class documentation here.
 

Methods in org.deegree.geometry.refs that return Geometry
 Geometry GeometryReference.getBuffer(Measure distance)
           
 Geometry GeometryReference.getConvexHull()
           
 Geometry GeometryReference.getDifference(Geometry geometry)
           
 Geometry GeometryReference.getIntersection(Geometry geometry)
           
 Geometry GeometryReference.getUnion(Geometry geometry)
           
 

Methods in org.deegree.geometry.refs with parameters of type Geometry
 boolean GeometryReference.contains(Geometry geometry)
           
 boolean GeometryReference.crosses(Geometry geometry)
           
 boolean GeometryReference.equals(Geometry geometry)
           
 Geometry GeometryReference.getDifference(Geometry geometry)
           
 Measure GeometryReference.getDistance(Geometry geometry, Unit requestedUnits)
           
 Geometry GeometryReference.getIntersection(Geometry geometry)
           
 Geometry GeometryReference.getUnion(Geometry geometry)
           
 boolean GeometryReference.intersects(Geometry geometry)
           
 boolean GeometryReference.isBeyond(Geometry geometry, Measure distance)
           
 boolean GeometryReference.isDisjoint(Geometry geometry)
           
 boolean GeometryReference.isWithin(Geometry geometry)
           
 boolean GeometryReference.isWithinDistance(Geometry geometry, Measure distance)
           
 boolean GeometryReference.overlaps(Geometry geometry)
           
 boolean GeometryReference.touches(Geometry geometry)
           
 

Uses of Geometry in org.deegree.geometry.standard
 

Classes in org.deegree.geometry.standard that implement Geometry
 class AbstractDefaultGeometry
          Abstract base class for the default Geometry implementation.
 class DefaultEnvelope
          Default implementation of Envelope.
 

Methods in org.deegree.geometry.standard that return Geometry
 Geometry AbstractDefaultGeometry.getBuffer(Measure distance)
           
 Geometry AbstractDefaultGeometry.getConvexHull()
           
 Geometry AbstractDefaultGeometry.getDifference(Geometry geometry)
           
 Geometry AbstractDefaultGeometry.getIntersection(Geometry geometry)
           
 Geometry AbstractDefaultGeometry.getUnion(Geometry geometry)
           
 

Methods in org.deegree.geometry.standard with parameters of type Geometry
 boolean AbstractDefaultGeometry.contains(Geometry geometry)
           
static JTSGeometryPair JTSGeometryPair.createCompatiblePair(AbstractDefaultGeometry geom1, Geometry geom2)
          Creates a "compatible" pair of JTS geometries from an AbstractDefaultGeometry and a second Geometry instance.
 boolean AbstractDefaultGeometry.crosses(Geometry geometry)
           
 boolean AbstractDefaultGeometry.equals(Geometry geometry)
           
protected static AbstractDefaultGeometry AbstractDefaultGeometry.getAsDefaultGeometry(Geometry geometry)
           
 Geometry AbstractDefaultGeometry.getDifference(Geometry geometry)
           
 Measure AbstractDefaultGeometry.getDistance(Geometry geometry, Unit requestedUnit)
           
 Geometry AbstractDefaultGeometry.getIntersection(Geometry geometry)
           
 Geometry AbstractDefaultGeometry.getUnion(Geometry geometry)
           
 boolean AbstractDefaultGeometry.intersects(Geometry geometry)
           
 boolean DefaultEnvelope.intersects(Geometry other)
           
 boolean AbstractDefaultGeometry.isBeyond(Geometry geometry, Measure distance)
           
 boolean AbstractDefaultGeometry.isDisjoint(Geometry geometry)
           
 boolean AbstractDefaultGeometry.isWithin(Geometry geometry)
           
 boolean AbstractDefaultGeometry.isWithinDistance(Geometry geometry, Measure distance)
           
 boolean AbstractDefaultGeometry.overlaps(Geometry geometry)
           
 boolean AbstractDefaultGeometry.touches(Geometry geometry)
           
 

Uses of Geometry in org.deegree.geometry.standard.composite
 

Classes in org.deegree.geometry.standard.composite that implement Geometry
 class DefaultCompositeCurve
          Default implementation of CompositeCurve.
 class DefaultCompositeGeometry
          Default implementation of CompositeGeometry.
 class DefaultCompositeSolid
          Default implementation of CompositeSolid.
 class DefaultCompositeSurface
          Default implementation of CompositeSurface.
 

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

Classes in org.deegree.geometry.standard.multi with type parameters of type Geometry
 class DefaultMultiGeometry<T extends Geometry>
          Default implementation of MultiGeometry.
 

Classes in org.deegree.geometry.standard.multi that implement Geometry
 class DefaultMultiCurve
          Default implementation of MultiCurve.
 class DefaultMultiGeometry<T extends Geometry>
          Default implementation of MultiGeometry.
 class DefaultMultiLineString
          Default implementation of MultiLineString.
 class DefaultMultiPoint
          Default implementation of MultiPoint.
 class DefaultMultiPolygon
          Default implementation of MultiPolygon.
 class DefaultMultiSolid
          Default implementation of MultiSolid.
 class DefaultMultiSurface
          Default implementation of MultiSurface.
 

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

Classes in org.deegree.geometry.standard.primitive that implement Geometry
 class DefaultCurve
          Default implementation of Curve.
 class DefaultLinearRing
          Default implementation of Ring.
 class DefaultLineString
          Default implementation of LineString.
 class DefaultOrientableCurve
          Default implementation of OrientableCurve.
 class DefaultOrientableSurface
          Default implementation of OrientableSurface.
 class DefaultPoint
          Default implementation of Point.
 class DefaultPolygon
          Default implementation of Polygon.
 class DefaultPolyhedralSurface
          Default implementation of PolyhedralSurface.
 class DefaultRing
          Default implementation of Ring.
 class DefaultSolid
          Default implementation of Solid.
 class DefaultSurface
          Default implementation of Surface.
 class DefaultTin
          Default implementation of Tin.
 class DefaultTriangulatedSurface
          Default implementation of TriangulatedSurface.
 

Methods in org.deegree.geometry.standard.primitive that return Geometry
 Geometry DefaultOrientableCurve.getBuffer(Measure distance)
           
 Geometry DefaultOrientableSurface.getBuffer(Measure distance)
           
 Geometry DefaultOrientableCurve.getConvexHull()
           
 Geometry DefaultOrientableSurface.getConvexHull()
           
 Geometry DefaultOrientableCurve.getDifference(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getDifference(Geometry geometry)
           
 Geometry DefaultOrientableCurve.getIntersection(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getIntersection(Geometry geometry)
           
 Geometry DefaultOrientableCurve.getUnion(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getUnion(Geometry geometry)
           
 

Methods in org.deegree.geometry.standard.primitive with parameters of type Geometry
 boolean DefaultOrientableCurve.contains(Geometry geometry)
           
 boolean DefaultOrientableSurface.contains(Geometry geometry)
           
 boolean DefaultOrientableCurve.crosses(Geometry geometry)
           
 boolean DefaultOrientableSurface.crosses(Geometry geometry)
           
 boolean DefaultOrientableCurve.equals(Geometry geometry)
           
 boolean DefaultOrientableSurface.equals(Geometry geometry)
           
 boolean DefaultPoint.equals(Geometry geometry)
           
 Geometry DefaultOrientableCurve.getDifference(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getDifference(Geometry geometry)
           
 Measure DefaultOrientableCurve.getDistance(Geometry geometry, Unit requestedUnit)
           
 Measure DefaultOrientableSurface.getDistance(Geometry geometry, Unit requestedUnit)
           
 Geometry DefaultOrientableCurve.getIntersection(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getIntersection(Geometry geometry)
           
 Geometry DefaultOrientableCurve.getUnion(Geometry geometry)
           
 Geometry DefaultOrientableSurface.getUnion(Geometry geometry)
           
 boolean DefaultOrientableCurve.intersects(Geometry geometry)
           
 boolean DefaultOrientableSurface.intersects(Geometry geometry)
           
 boolean DefaultOrientableCurve.isBeyond(Geometry geometry, Measure distance)
           
 boolean DefaultOrientableSurface.isBeyond(Geometry geometry, Measure distance)
           
 boolean DefaultOrientableCurve.isDisjoint(Geometry geometry)
           
 boolean DefaultOrientableSurface.isDisjoint(Geometry geometry)
           
 boolean DefaultOrientableCurve.isWithin(Geometry geometry)
           
 boolean DefaultOrientableSurface.isWithin(Geometry geometry)
           
 boolean DefaultOrientableCurve.isWithinDistance(Geometry geometry, Measure distance)
           
 boolean DefaultOrientableSurface.isWithinDistance(Geometry geometry, Measure distance)
           
 boolean DefaultOrientableCurve.overlaps(Geometry geometry)
           
 boolean DefaultOrientableSurface.overlaps(Geometry geometry)
           
 boolean DefaultOrientableCurve.touches(Geometry geometry)
           
 boolean DefaultOrientableSurface.touches(Geometry geometry)
           
 

Uses of Geometry in org.deegree.geometry.utils
 

Methods in org.deegree.geometry.utils that return Geometry
static Geometry GeometryUtils.move(Geometry geom, double offx, double offy)
          Moves the coordinates of a geometry.
 

Methods in org.deegree.geometry.utils with parameters of type Geometry
static Geometry GeometryUtils.move(Geometry geom, double offx, double offy)
          Moves the coordinates of a geometry.
 

Uses of Geometry in org.deegree.geometry.validation
 

Methods in org.deegree.geometry.validation that return Geometry
 Geometry CoordinateValidityInspector.inspect(Geometry geom)
           
 

Methods in org.deegree.geometry.validation with parameters of type Geometry
 Geometry CoordinateValidityInspector.inspect(Geometry geom)
           
 boolean GeometryValidator.validateGeometry(Geometry geom)
          Performs a topological validation of the given Geometry.
 

Uses of Geometry in org.deegree.gml
 

Methods in org.deegree.gml that return Geometry
 Geometry GMLStreamReader.readGeometry()
          Returns the deegree model representation for the GML geometry element event that the cursor of the underlying xml stream points to.
 Geometry GMLStreamReader.readGeometryOrEnvelope()
          Returns the deegree model representation for the GML geometry element event that the cursor of the underlying xml stream points to.
 

Methods in org.deegree.gml with parameters of type Geometry
 void GMLStreamWriter.write(Geometry geometry)
          Writes a GML representation of the given Geometry to the stream.
 

Uses of Geometry in org.deegree.gml.geometry
 

Methods in org.deegree.gml.geometry that return Geometry
 Geometry GML2GeometryReader.parse(XMLStreamReaderWrapper xmlStream)
           
 Geometry GMLGeometryReader.parse(XMLStreamReaderWrapper xmlStream)
           
 Geometry GML3GeometryReader.parse(XMLStreamReaderWrapper xmlStream)
          Returns the object representation for the given gml:_Geometry element event that the cursor of the associated XMLStreamReader points at.
 Geometry GML2GeometryReader.parse(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
           
 Geometry GMLGeometryReader.parse(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
           
 Geometry GML3GeometryReader.parse(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation for the given gml:_Geometry element event that the cursor of the associated XMLStreamReader points at.
 Geometry GML3GeometryReader.parseAbstractGeometricComplex(XMLStreamReaderWrapper xmlStream, CRS defaultCRS)
          Returns the object representation for the given gml:_Geometry event that represents a geometric complex (either gml:CompositeCurve, gml:CompositeSolid, gml:CompositeSurface or gml:GeometricComplex), that the cursor of the given XMLStreamReader points at.
 Geometry GML2GeometryReader.parseGeometryOrBox(XMLStreamReaderWrapper xmlStream)
          Parse the current geometry or bbox, the given stream is pointing to.
 Geometry GML2GeometryReader.parseGeometryOrBox(XMLStreamReaderWrapper xmlStream, CRS defaultCRS)
           
 Geometry GML2GeometryReader.parseGeometryOrEnvelope(XMLStreamReaderWrapper xmlStream)
          Parse the current geometry or bbox, the given stream is pointing to.
 Geometry GML3GeometryReader.parseGeometryOrEnvelope(XMLStreamReaderWrapper xmlStream)
          Returns the object representation for the given gml:_Geometry/gml:Envelope element event that the cursor of the associated XMLStreamReader points at.
 Geometry GML2GeometryReader.parseGeometryOrEnvelope(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
           
 Geometry GMLGeometryReader.parseGeometryOrEnvelope(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Parse the current geometry or envelope the given stream is pointing to.
 Geometry GML3GeometryReader.parseGeometryOrEnvelope(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation for the given gml:_Geometry/gml:Envelope element event that the cursor of the associated XMLStreamReader points at.
 Geometry GML3GeometryReader.parseGeometryProperty(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation of an element with type gml:GeometryPropertyType (such as gml:geometryMember).
 Geometry GML3GeometryReader.parseImplicitGeometry(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation for the given gml:_ImplicitGeometry element event that the cursor of the associated XMLStreamReader points at.
 

Methods in org.deegree.gml.geometry that return types with arguments of type Geometry
 MultiGeometry<? extends Geometry> GML3GeometryReader.parseGeometricAggregate(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation for the given gml:_GeometricAggregate element event that the cursor of the given XMLStreamReader points at.
 MultiGeometry<Geometry> GML2GeometryReader.parseMultiGeometry(XMLStreamReaderWrapper xmlStream)
           
 MultiGeometry<Geometry> GML2GeometryReader.parseMultiGeometry(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
           
 MultiGeometry<Geometry> GML3GeometryReader.parseMultiGeometry(XMLStreamReaderWrapper xmlStream, ICRS defaultCRS)
          Returns the object representation of a gml:MultiGeometry element.
 

Methods in org.deegree.gml.geometry with parameters of type Geometry
 void GML2GeometryWriter.export(Geometry geometry)
           
 void GMLGeometryWriter.export(Geometry geometry)
          Exports a general geometry.
 void GML3GeometryWriter.export(Geometry geometry)
          Exporting a geometry via the XMLStreamWriter given when the class was constructed
 

Method parameters in org.deegree.gml.geometry with type arguments of type Geometry
 void GML2GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> multiGeometry)
           
 void GMLGeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
           
 void GML3GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
          Exporting a multi-geometry via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
           
 void GMLGeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
           
 void GML3GeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
           
 

Uses of Geometry in org.deegree.gml.utils
 

Methods in org.deegree.gml.utils with parameters of type Geometry
 boolean GMLObjectVisitor.visitGeometry(Geometry geom)
           
 

Uses of Geometry in org.deegree.metadata.ebrim
 

Methods in org.deegree.metadata.ebrim that return Geometry
 Geometry RegistryObject.getGeometrySlotValue(String slotName)
           
 

Uses of Geometry in org.deegree.rendering.r2d
 

Methods in org.deegree.rendering.r2d with parameters of type Geometry
 void Renderer.render(LineStyling styling, Geometry geom)
           
 void Java2DRenderer.render(LineStyling styling, Geometry geom)
           
 void Renderer.render(PointStyling styling, Geometry geom)
           
 void Java2DRenderer.render(PointStyling styling, Geometry geom)
           
 void Renderer.render(PolygonStyling styling, Geometry geom)
           
 void Java2DRenderer.render(PolygonStyling styling, Geometry geom)
           
 void Renderer.render(Styling styling, Geometry geom)
           
 void Java2DRenderer.render(Styling styling, Geometry geom)
           
 void Java2DTextRenderer.render(TextStyling styling, String text, Geometry geom)
           
 void TextRenderer.render(TextStyling styling, String text, Geometry geom)
          Render a text styling with a string and a geometry.
 

Method parameters in org.deegree.rendering.r2d with type arguments of type Geometry
 void Renderer.render(Styling styling, Collection<Geometry> geoms)
           
 void Java2DRenderer.render(Styling styling, Collection<Geometry> geoms)
           
 void Java2DTextRenderer.render(TextStyling styling, String text, Collection<Geometry> geoms)
           
 void TextRenderer.render(TextStyling styling, String text, Collection<Geometry> geoms)
           
 

Uses of Geometry in org.deegree.services.wps.provider.sextante
 

Methods in org.deegree.services.wps.provider.sextante that return Geometry
static Geometry VectorLayerAdapter.createGeometry(es.unex.sextante.dataObjects.IVectorLayer l)
          Creates a Geometry from an IVectorLayer.
 

Methods in org.deegree.services.wps.provider.sextante with parameters of type Geometry
static VectorLayerImpl VectorLayerAdapter.createVectorLayer(Geometry g)
          Creates an IVectorLayer from a Geometry.
 

Uses of Geometry in org.deegree.sqldialect.filter.expression
 

Constructors in org.deegree.sqldialect.filter.expression with parameters of type Geometry
SQLArgument(Geometry value, GeometryParticleConverter converter)
          Creates a new spatial valued SQLArgument.
 

Uses of Geometry in org.deegree.sqldialect.filter.mssql
 

Methods in org.deegree.sqldialect.filter.mssql that return Geometry
 Geometry MSSQLGeometryConverter.toParticle(ResultSet rs, int colIndex)
           
 

Methods in org.deegree.sqldialect.filter.mssql with parameters of type Geometry
 String MSSQLGeometryConverter.getSetSnippet(Geometry particle)
           
 void MSSQLGeometryConverter.setParticle(PreparedStatement stmt, Geometry particle, int paramIndex)
           
 

Uses of Geometry in org.deegree.sqldialect.oracle
 

Methods in org.deegree.sqldialect.oracle that return Geometry
 Geometry OracleGeometryConverter.toParticle(ResultSet rs, int colIndex)
           
 

Methods in org.deegree.sqldialect.oracle with parameters of type Geometry
 String OracleGeometryConverter.getSetSnippet(Geometry particle)
           
 void OracleGeometryConverter.setParticle(PreparedStatement stmt, Geometry particle, int paramIndex)
           
 

Uses of Geometry in org.deegree.sqldialect.oracle.sdo
 

Methods in org.deegree.sqldialect.oracle.sdo that return Geometry
 Geometry SDOGeometryConverter.toGeometry(oracle.sql.STRUCT sdoStruct, ICRS crs)
          Convert SDO_GEOMETRY (from Oracle STRUCT) to deegree Geometry NOTE 1 (polygon) Polygons (simple, multiple or compound) will be treated to have at least one exterior or unknown ring.
 

Methods in org.deegree.sqldialect.oracle.sdo with parameters of type Geometry
 Object SDOGeometryConverter.fromGeometry(oracle.jdbc.OracleConnection conn, int srid, Geometry geometry)
          Deprecated. 
 Object SDOGeometryConverter.fromGeometry(oracle.jdbc.OracleConnection conn, int srid, Geometry geometry, boolean allowJTSfallback)
           
 

Uses of Geometry in org.deegree.sqldialect.postgis
 

Methods in org.deegree.sqldialect.postgis that return Geometry
 Geometry PostGISGeometryConverter.toParticle(ResultSet rs, int colIndex)
           
 

Methods in org.deegree.sqldialect.postgis with parameters of type Geometry
 String PostGISGeometryConverter.getSetSnippet(Geometry particle)
           
 void PostGISGeometryConverter.setParticle(PreparedStatement stmt, Geometry particle, int paramIndex)
           
 

Uses of Geometry in org.deegree.style.se.unevaluated
 

Methods in org.deegree.style.se.unevaluated that return types with arguments of type Geometry
 LinkedList<Triple<Styling,LinkedList<Geometry>,String>> Style.evaluate(Feature f, XPathEvaluator<Feature> evaluator)
           
 Pair<T,LinkedList<Geometry>> Symbolizer.evaluate(Feature f, XPathEvaluator<Feature> evaluator)
           
 

Uses of Geometry in org.deegree.wps.jts
 

Methods in org.deegree.wps.jts that return Geometry
 Geometry CentroidProcesslet.process(Geometry inputGeometry, Map<String,Object> params)
           
 Geometry BufferProcesslet.process(Geometry inputGeometry, Map<String,Object> params)
           
 Geometry GeometryHandler.process(Geometry inputGeometry, Map<String,Object> params)
          Applies a process operation to the given geometry and parameters
 

Methods in org.deegree.wps.jts with parameters of type Geometry
 Geometry CentroidProcesslet.process(Geometry inputGeometry, Map<String,Object> params)
           
 Geometry BufferProcesslet.process(Geometry inputGeometry, Map<String,Object> params)
           
 Geometry GeometryHandler.process(Geometry inputGeometry, Map<String,Object> params)
          Applies a process operation to the given geometry and parameters
 



Copyright © 2011. All Rights Reserved.