deegree 2.3 (2010/04/09 10:10 build-4-official)

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

Packages that use Point
org.deegree.framework.util   
org.deegree.graphics.displayelements   
org.deegree.io.mapinfoapi   
org.deegree.io.quadtree   
org.deegree.io.shpapi   
org.deegree.io.shpapi.shape_new   
org.deegree.model.spatialschema   
org.deegree.ogcbase Provides common classes to deal with an OGC conform service instance. 
org.deegree.ogcwebservices   
org.deegree.ogcwebservices.wmps.operation   
org.deegree.portal.context   
org.deegree.processing.raster.converter   
 

Uses of Point in org.deegree.framework.util
 

Methods in org.deegree.framework.util that return Point
static Point GeometryUtils.vectorByAngle(Point a1, Point a2, double l, double alpha)
           
 

Methods in org.deegree.framework.util with parameters of type Point
static Point GeometryUtils.vectorByAngle(Point a1, Point a2, double l, double alpha)
           
 

Uses of Point in org.deegree.graphics.displayelements
 

Constructors in org.deegree.graphics.displayelements with parameters of type Point
PointDisplayElement(Feature feature, Point geometry)
          Creates a new PointDisplayElement_Impl object.
PointDisplayElement(Feature feature, Point geometry, PointSymbolizer symbolizer)
          Creates a new PointDisplayElement_Impl object.
 

Uses of Point in org.deegree.io.mapinfoapi
 

Methods in org.deegree.io.mapinfoapi that return Point
 Point MIFGeometryParser.parsePoint()
           
 

Uses of Point in org.deegree.io.quadtree
 

Methods in org.deegree.io.quadtree with parameters of type Point
 void DBQuadtree.insert(T item, Point point)
           
 void MemPointQuadtree.insert(T item, Point point)
          Inserts the item with the given point as envelope.
 void Quadtree.insert(T itemKey, Point point)
          inserts a new item into the quadtree
 

Uses of Point in org.deegree.io.shpapi
 

Methods in org.deegree.io.shpapi that return Point
 Point[] SHP2WKS.transformMultiPoint(CoordinateSystem srs, SHPMultiPoint shpmultipoint)
          method: Point[] transformMultiPoint(CS_CoordinateSystem srs,
SHPMultiPoint shpmultipoint))
transforms a SHPMultiPoint to a WKSGeometry
gets a multipoint that should be transformed
 Point SHP2WKS.transformPoint(CoordinateSystem crs, SHPPoint shppoint)
          method: Point transformPoint(CS_CoordinateSystem srs,
SHPPoint shppoint))
transforms a SHPPoint to a WKSGeometry
gets a point that should be transformed
 

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

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

Uses of Point in org.deegree.model.spatialschema
 

Subinterfaces of Point in org.deegree.model.spatialschema
 interface CompositePoint
           -----------------------------------------------------
 

Classes in org.deegree.model.spatialschema that implement Point
 class PointImpl
          default implementation of the Point interface.
 

Fields in org.deegree.model.spatialschema declared as Point
protected  Point SurfacePatchImpl.centroid
           
protected  Point GeometryImpl.centroid
           
 

Methods in org.deegree.model.spatialschema that return Point
static Point GeometryFactory.createPoint(byte[] wkb, CoordinateSystem srs)
          creates a Point from a wkb.
static Point GeometryFactory.createPoint(double x, double y, CoordinateSystem crs)
          creates a Point from two coordinates.
static Point GeometryFactory.createPoint(double x, double y, double z, CoordinateSystem crs)
          creates a Point from two coordinates.
static Point GeometryFactory.createPoint(Position position, CoordinateSystem crs)
          creates a Point from a position.
 Point[] MultiPoint.getAllPoints()
          returns all Points as array
 Point[] MultiPointImpl.getAllPoints()
          returns all Points as array
 Point SurfacePatch.getCentroid()
          The operation "centroid" shall return the mathematical centroid for this surfacepatch.
 Point Envelope.getCentroid()
          returns the centroid of an Envelope
 Point SurfacePatchImpl.getCentroid()
           
 Point GeometryImpl.getCentroid()
           The operation "centroid" shall return the mathematical centroid for this Geometry.
 Point Geometry.getCentroid()
          The operation "centroid" shall return the mathematical centroid for this Geometry.
 Point EnvelopeImpl.getCentroid()
          returns the centroid of an Envelope
 Point CurveSegmentImpl.getEndPoint()
          returns the last point of the curve. if the curve segment doesn't contain a point null will be returned
 Point GenericCurve.getEndPoint()
           
 Point CurveImpl.getEndPoint()
          returns the last point of the curve.if the curve doesn't contain a segment or the last segment doesn't contain a point null will be returned
 Point MultiPoint.getPointAt(int index)
          returns the Point at the submitted index.
 Point MultiPointImpl.getPointAt(int index)
          returns the Point at the submitted index.
 Point CurveSegmentImpl.getStartPoint()
          returns the first point of the curve. if the curve segment doesn't contain a point null will be returned
 Point GenericCurve.getStartPoint()
           
 Point CurveImpl.getStartPoint()
          returns the first point of the curve. if the curve doesn't contain a segment or the first segment doesn't contain a point null will be returned
 Point MultiPoint.removePoint(Point point)
          removes the submitted Point from the aggregation
 Point MultiPointImpl.removePoint(Point gmp)
          removes the submitted Point from the aggregation
 Point MultiPoint.removePointAt(int index)
          removes the Point at the submitted index from the aggregation. if index is larger then getSize() - 1 or smaller then 0 an exception will be thrown.
 Point MultiPointImpl.removePointAt(int index)
          removes the Point at the submitted index from the aggregation. if index is larger then getSize() - 1 or smaller then 0 an exception will be thrown.
static Point GMLGeometryAdapter.wrapPoint(Element element, String srsName)
          Returns a Point instance created from the passed gml:Point element.
static Point WKTAdapter.wrapPoint(String wkt, CoordinateSystem crs)
          creates a Point from a WKT.
 

Methods in org.deegree.model.spatialschema with parameters of type Point
 void MultiPoint.addPoint(Point point)
          adds a Point to the aggregation
 void MultiPointImpl.addPoint(Point gmp)
          adds a Point to the aggregation
static boolean LinearContains.contains(Curve curve, Point point)
          the operation is currently not supported.
static boolean LinearContains.contains(Point point1, Point point2)
          the operations returns true if two the passed points contains
static boolean LinearContains.contains(Surface surface, Point point)
          the operation returns true if the submitted point contains the submitted surface
static MultiPoint GeometryFactory.createMultiPoint(Point[] points)
          creates a MultiPoint from an array of Point.
static MultiPoint GeometryFactory.createMultiPoint(Point[] points, CoordinateSystem crs)
          creates a MultiPoint from an array of Point.
 void MultiPoint.insertPointAt(Point point, int index)
          inserts a Point into the aggregation. all elements with an index equal or larger index will be moved. if index is larger then getSize() - 1 or smaller then 0 or point equals null an exception will be thrown.
 void MultiPointImpl.insertPointAt(Point gmp, int index)
          inserts a Point into the aggregation. all elements with an index equal or larger index will be moved. if index is larger then getSize() - 1 or smaller then 0 or gmp equals null an exception will be thrown.
static boolean LinearIntersects.intersects(Point point, Curve curve)
          the operations returns true if the submitted point intersects the submitted curve
static boolean LinearIntersects.intersects(Point point1, Point point2)
          the operations returns true if two the submitted points intersects
static boolean LinearIntersects.intersects(Point point, Surface surface)
          the operation returns true if the submitted point intersects the submitted surface
 Point MultiPoint.removePoint(Point point)
          removes the submitted Point from the aggregation
 Point MultiPointImpl.removePoint(Point gmp)
          removes the submitted Point from the aggregation
 void MultiPoint.setPointAt(Point point, int index)
          sets the submitted Point at the submitted index. the element at the position index will be removed. if index is larger then getSize() - 1 or smaller then 0 or point equals null an exception will be thrown.
 void MultiPointImpl.setPointAt(Point gmp, int index)
          sets the submitted Point at the submitted index. the element at the position index will be removed. if index is larger then getSize() - 1 or smaller then 0 or gmp equals null an exception will be thrown.
 

Constructors in org.deegree.model.spatialschema with parameters of type Point
MultiPointImpl(Point[] gmp)
          Creates a new MultiPointImpl object.
MultiPointImpl(Point[] gmp, CoordinateSystem crs)
          Creates a new MultiPointImpl object.
PointImpl(Point otherPoint)
          constructor
 

Uses of Point in org.deegree.ogcbase
 

Methods in org.deegree.ogcbase that return Point
static Point GMLDocument.parsePos(Element element)
          creates a Point from the passed element containing a GML pos.
 

Uses of Point in org.deegree.ogcwebservices
 

Methods in org.deegree.ogcwebservices that return Point
 Point LonLatEnvelope.getMax()
           
 Point LonLatEnvelope.getMin()
           
 

Methods in org.deegree.ogcwebservices with parameters of type Point
 void LonLatEnvelope.setMax(Point max)
           
 void LonLatEnvelope.setMin(Point min)
           
 

Constructors in org.deegree.ogcwebservices with parameters of type Point
LonLatEnvelope(Point min, Point max)
           
LonLatEnvelope(Point min, Point max, String srs)
           
LonLatEnvelope(Point min, Point max, TimePosition[] timePositions, String srs)
           
 

Uses of Point in org.deegree.ogcwebservices.wmps.operation
 

Methods in org.deegree.ogcwebservices.wmps.operation that return Point
 Point PrintMap.getCenter()
          Get center
 

Methods in org.deegree.ogcwebservices.wmps.operation with parameters of type Point
static PrintMap PrintMap.create(String id, String version, GetMap.Layer[] layers, String srs, Envelope bbox, Point center, int scaleDenominator, boolean transparent, Color bgColor, String title, String copyright, boolean legend, boolean scaleBar, String note, String template, String emailAddress, Timestamp timestamp, TextArea[] textAreas, Map<String,String> vendorSpecificParameters)
          Returns a new PrintMap instance.
 

Constructors in org.deegree.ogcwebservices.wmps.operation with parameters of type Point
PrintMap(String id, String version, GetMap.Layer[] layers, String srs, Envelope boundingBox, Point center, int scaleDenominator, boolean transparent, Color bgColor, String title, String copyright, boolean legend, boolean scaleBar, String note, String template, String emailaddress, Timestamp timestamp, TextArea[] textAreas, Map<String,String> vendorSpecificParameter)
          Create a new PrintMap instance.
 

Uses of Point in org.deegree.portal.context
 

Methods in org.deegree.portal.context that return Point
 Point[] General.getBoundingBox()
           
 

Methods in org.deegree.portal.context with parameters of type Point
protected static void XMLFactory.appendBoundingBox(Node toNode, Point[] points)
          Appends the XML representation of a GM_Point[] to a Node using the namespace.
 ViewContext DefaultMapModelAccess.recenterMap(Point point)
          centers he map described by a ViewContext to the passed point.
 ViewContext MapModelAccess.recenterMap(Point point)
          centers he map described by a ViewContext to the passed point.
 void General.setBoundingBox(Point[] boundingBox)
          BoundingBox formatted as defined in the WMS 1.1.1 Specification.
 ViewContext DefaultMapModelAccess.zoom(Point point, double factor)
          zoom in or out of the map described by a ViewContext and recenters it to the passed point.
 ViewContext MapModelAccess.zoom(Point point, double factor)
          zoom in or out of the map described by a ViewContext and recenters it to the passed point.
 

Constructors in org.deegree.portal.context with parameters of type Point
General(String title, String abstract_, Rectangle window, CitedResponsibleParty contactInformation, Point[] boundingBox, BaseURL descriptionURL, ImageURL logoURL, String[] keywords, GeneralExtension extension)
          Creates a new General object.
 

Uses of Point in org.deegree.processing.raster.converter
 

Methods in org.deegree.processing.raster.converter that return types with arguments of type Point
 List<Point> Image2RawData.parseAsPointList(CoordinateSystem crs)
           
 


deegree 2.3 (2010/04/09 10:10 build-4-official)

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