deegree 2.2 (2008/12/22 11:33 build-3038-official)

Uses of Interface
org.deegree.model.spatialschema.Position

Packages that use Position
org.deegree.graphics   
org.deegree.graphics.transformation   
org.deegree.io.shpapi   
org.deegree.io.shpapi.shape_new   
org.deegree.model.spatialschema   
org.deegree.ogcwebservices.wms.capabilities   
 

Uses of Position in org.deegree.graphics
 

Methods in org.deegree.graphics with parameters of type Position
 String[] Selector.select(Position position)
          selects all features (display elements) that intersects the submitted point. if a feature is already selected it remains selected.
 String[] Selector.select(Position position, double radius)
          selects all features (display elements) that are located within the circle described by the position and the radius. if a feature is already selected it remains selected.
 

Uses of Position in org.deegree.graphics.transformation
 

Methods in org.deegree.graphics.transformation that return Position
 Position WorldToScreenTransform.getDestPoint(Position point)
          executes a coordinat transformation for the submitted point of the source coordinat system.
 Position GeoTransform.getDestPoint(Position point)
           
 Position WorldToScreenTransform.getSourcePoint(Position point)
          executes a coordinat transformation for the submitted point of the destination coordinate system.
 Position GeoTransform.getSourcePoint(Position point)
           
 

Methods in org.deegree.graphics.transformation with parameters of type Position
 Position WorldToScreenTransform.getDestPoint(Position point)
          executes a coordinat transformation for the submitted point of the source coordinat system.
 Position GeoTransform.getDestPoint(Position point)
           
 Position WorldToScreenTransform.getSourcePoint(Position point)
          executes a coordinat transformation for the submitted point of the destination coordinate system.
 Position GeoTransform.getSourcePoint(Position point)
           
 

Uses of Position in org.deegree.io.shpapi
 

Constructors in org.deegree.io.shpapi with parameters of type Position
SHPPoint(Position point)
          constructor: creates a SHPPoint from a WKS Geometrie
SHPPoint3D(Position point)
           
 

Uses of Position in org.deegree.io.shpapi.shape_new
 

Constructors in org.deegree.io.shpapi.shape_new with parameters of type Position
ShapePoint(Position p)
          Creates a new PointZ from deegree Position.
 

Uses of Position in org.deegree.model.spatialschema
 

Classes in org.deegree.model.spatialschema that implement Position
(package private)  class PositionImpl
          A sequence of decimals numbers which when written on a width are a sequence of coordinate positions.
 

Fields in org.deegree.model.spatialschema declared as Position
protected  Position EnvelopeImpl.max
           
protected  Position EnvelopeImpl.min
           
protected  Position[] CurveSegmentImpl.points
           
 

Methods in org.deegree.model.spatialschema that return Position
protected  Position SurfacePatchImpl.calculateCentroid(Position[] point)
          calculates the centroid of the surface patch taken from gems iv (modified) this method is only valid for the two-dimensional case.
static Position GeometryFactory.createPosition(double[] p)
          creates a Position from an array of double.
static Position GeometryFactory.createPosition(double x, double y)
          creates a Position from two coordinates.
static Position GeometryFactory.createPosition(double x, double y, double z)
          creates a Position from three coordinates.
 Position CurveBoundary.getEndPoint()
          gets the end position of a boundary
 Position CurveBoundaryImpl.getEndPoint()
          returns the EndPoint of the boundary
 Position[] SurfacePatchImpl.getExteriorRing()
          returns a reference to the exterior ring of the surface
 Position[] SurfacePatch.getExteriorRing()
           
 Position[][] SurfacePatchImpl.getInteriorRings()
          returns a reference to the interior rings of the surface
 Position[][] SurfacePatch.getInteriorRings()
           
 Position Envelope.getMax()
          returns the maximum coordinates of bounding box
 Position EnvelopeImpl.getMax()
          returns the maximum coordinates of bounding box
 Position Envelope.getMin()
          returns the minimum coordinates of bounding box
 Position EnvelopeImpl.getMin()
          returns the minimum coordinates of bounding box
 Position Point.getPosition()
          returns the position of the point
 Position PointImpl.getPosition()
           
 Position CurveSegment.getPositionAt(int index)
          returns the curve position at the submitted index
 Position CurveSegmentImpl.getPositionAt(int index)
          returns the curve segment position at the submitted index
 Position[] Ring.getPositions()
           
 Position[] RingImpl.getPositions()
          gets the Ring as a Array of positions.
 Position[] CurveSegment.getPositions()
          returns all positions of the segement as array of Point
 Position[] CurveSegmentImpl.getPositions()
          returns all positions of the segement as array of Position.
 Position CurveBoundary.getStartPoint()
          gets the start position of a boundary
 Position CurveBoundaryImpl.getStartPoint()
          returns the StartPoint of the boundary
 

Methods in org.deegree.model.spatialschema with parameters of type Position
protected  Position SurfacePatchImpl.calculateCentroid(Position[] point)
          calculates the centroid of the surface patch taken from gems iv (modified) this method is only valid for the two-dimensional case.
static boolean LinearContains.contains(CurveSegment curve, Position point)
          the operations returns true if the submitted point contains the submitted curve segment
 boolean Envelope.contains(Position position)
          returns true if the bounding box contains the submitted position
 boolean EnvelopeImpl.contains(Position point)
          returns true if the bounding box conatins the specified Point
 boolean RingImpl.contains(Position position)
          The Boolean valued operation "contains" shall return TRUE if this Geometry contains a single point given by a coordinate.
 boolean Geometry.contains(Position position)
          The Boolean valued operation "contains" shall return TRUE if this Geometry contains a single point given by a coordinate.
 boolean GeometryImpl.contains(Position position)
          The Boolean valued operation "contains" shall return TRUE if this Geometry contains a single point given by a coordinate.
 boolean SurfaceImpl.contains(Position position)
          The Boolean valued operation "contains" shall return TRUE if this Geometry contains a single point given by a coordinate.
 boolean SurfaceBoundaryImpl.contains(Position position)
          The Boolean valued operation "contains" shall return TRUE if this Geometry contains a single point given by a coordinate.
protected static boolean LinearContains.contains(Position[] positions, Position point, double tolerance)
          the operation returns true if polygon defined by an array of Position contains the submitted point.
protected static boolean LinearContains.contains(Position[] positions, Position point, double tolerance)
          the operation returns true if polygon defined by an array of Position contains the submitted point.
static boolean LinearContains.contains(Position point1, Position point2)
          the operations returns true if two the submitted points contains
static boolean LinearContains.contains(SurfacePatch surface, Position point, double tolerance)
          the operation returns true if the submitted point contains the submitted surface patch
static Curve GeometryFactory.createCurve(Position[] positions, CoordinateSystem crs)
          creates a Curve from an array of Positions.
static CurveSegment GeometryFactory.createCurveSegment(Position[] points, CoordinateSystem crs)
          creates a CurveSegment from an array of points.
static Envelope GeometryFactory.createEnvelope(Position min, Position max, CoordinateSystem crs)
          creates a Envelope object out from two corner coordinates
static Point GeometryFactory.createPoint(Position position, CoordinateSystem crs)
          creates a Point from a position.
static Surface GeometryFactory.createSurface(Position[] exteriorRing, Position[][] interiorRings, SurfaceInterpolation si, CoordinateSystem crs)
          creates a Surface composed of one SurfacePatch from array(s) of Position
static Surface GeometryFactory.createSurface(Position[] exteriorRing, Position[][] interiorRings, SurfaceInterpolation si, CoordinateSystem crs)
          creates a Surface composed of one SurfacePatch from array(s) of Position
static SurfacePatch GeometryFactory.createSurfacePatch(Position[] exteriorRing, Position[][] interiorRings, SurfaceInterpolation si, CoordinateSystem crs)
          creates a SurfacePatch from array(s) of Position
static SurfacePatch GeometryFactory.createSurfacePatch(Position[] exteriorRing, Position[][] interiorRings, SurfaceInterpolation si, CoordinateSystem crs)
          creates a SurfacePatch from array(s) of Position
static com.vividsolutions.jts.geom.LinearRing JTSAdapter.export(Position[] positions)
          Converts an array of Positions to a LinearRing.
static boolean LinearIntersects.intersects(Position point, CurveSegment curve, double tolerance)
          the operations returns true if the submitted point intersects the passed curve segment
static boolean LinearIntersects.intersects(Position point1, Position point2, double tolerance)
          the operations returns true if two the submitted points intersects
static boolean LinearIntersects.intersects(Position point, SurfacePatch surface, double tolerance)
          the operation returns true if the submitted point intersects the submitted surface patch
protected  void RingImpl.setPositions(Position[][] positions)
          sets the Ring as a ArrayList of points
 

Constructors in org.deegree.model.spatialschema with parameters of type Position
CurveBoundaryImpl(CoordinateSystem crs, Position sp, Position ep)
          constructor of curve_boundary with CS_CoordinateSystem and startpoint and endpoint
CurveSegmentImpl(Position[] gmps, CoordinateSystem crs)
          Creates a new CurveSegmentImpl object.
EnvelopeImpl(Position min, Position max)
          Creates a new EnvelopeImpl object.
EnvelopeImpl(Position min, Position max, CoordinateSystem crs)
          Creates a new EnvelopeImpl object.
LineStringImpl(Position[] gmps, CoordinateSystem cs)
          Creates a new LineStringImpl object.
PointImpl(Position gmo, CoordinateSystem crs)
          constructor
PolygonImpl(SurfaceInterpolation interpolation, Position[] exteriorRing, Position[][] interiorRings, CoordinateSystem crs)
          Creates a new PolygonImpl object.
PolygonImpl(SurfaceInterpolation interpolation, Position[] exteriorRing, Position[][] interiorRings, CoordinateSystem crs)
          Creates a new PolygonImpl object.
RingImpl(Position[] points, CoordinateSystem crs)
          Constructor, with an array and CoordinateSystem
RingImpl(Position[] points, CoordinateSystem crs, char orientation)
          Constructor, with an array, CoordinateSystem and Orientation
SurfacePatchImpl(SurfaceInterpolation interpolation, Position[] exteriorRing, Position[][] interiorRings, CoordinateSystem crs)
          Creates a new SurfacePatchImpl object.
SurfacePatchImpl(SurfaceInterpolation interpolation, Position[] exteriorRing, Position[][] interiorRings, CoordinateSystem crs)
          Creates a new SurfacePatchImpl object.
 

Uses of Position in org.deegree.ogcwebservices.wms.capabilities
 

Constructors in org.deegree.ogcwebservices.wms.capabilities with parameters of type Position
LayerBoundingBox(Position min, Position max, String srs, double resx, double resy)
          constructor initializing the class with the
 


deegree 2.2 (2008/12/22 11:33 build-3038-official)

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