C# Class SharpMap.Geometries.MultiPoint

A MultiPoint is a 0 dimensional geometric collection. The elements of a MultiPoint are restricted to Points. The points are not connected or ordered.
Inheritance: GeometryCollection
Afficher le fichier Open project: jumpinjackie/fdotoolbox Class Usage Examples

Méthodes publiques

Méthode Description
Boundary ( ) : Geometry

The boundary of a MultiPoint is the empty set (null).

Buffer ( double d ) : Geometry

Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry.

Clone ( ) : MultiPoint

Return a copy of this geometry

ConvexHull ( ) : Geometry

Geometry—Returns a geometry that represents the convex hull of this Geometry.

Difference ( Geometry geom ) : Geometry

Returns a geometry that represents the point set difference of this Geometry with anotherGeometry.

Distance ( Geometry geom ) : double

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.

Geometry ( int N ) : System.Point

Returns an indexed geometry in the collection

GetBoundingBox ( ) : BoundingBox

The minimum bounding box for this Geometry.

GetEnumerator ( ) : IEnumerator

Gets an enumerator for enumerating the geometries in the GeometryCollection

Intersection ( Geometry geom ) : Geometry

Returns a geometry that represents the point set intersection of this Geometry with anotherGeometry.

IsEmpty ( ) : bool

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.

IsSimple ( ) : bool

Returns 'true' if this Geometry has no anomalous geometric points, such as self intersection or self tangency. The description of each instantiable geometric class will include the specific conditions that cause an instance of that class to be classified as not simple.

MultiPoint ( ) : System

Initializes a new MultiPoint collection

SymDifference ( Geometry geom ) : Geometry

Returns a geometry that represents the point set symmetric difference of this Geometry with anotherGeometry.

Union ( Geometry geom ) : Geometry

Returns a geometry that represents the point set union of this Geometry with anotherGeometry.

this ( int n ) : System.Point

Gets the n'th point in the MultiPoint collection

Method Details

Boundary() public méthode

The boundary of a MultiPoint is the empty set (null).
public Boundary ( ) : Geometry
Résultat Geometry

Buffer() public méthode

Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry.
public Buffer ( double d ) : Geometry
d double Buffer distance
Résultat Geometry

Clone() public méthode

Return a copy of this geometry
public Clone ( ) : MultiPoint
Résultat MultiPoint

ConvexHull() public méthode

Geometry—Returns a geometry that represents the convex hull of this Geometry.
public ConvexHull ( ) : Geometry
Résultat Geometry

Difference() public méthode

Returns a geometry that represents the point set difference of this Geometry with anotherGeometry.
public Difference ( Geometry geom ) : Geometry
geom Geometry Geometry to compare to
Résultat Geometry

Distance() public méthode

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.
public Distance ( Geometry geom ) : double
geom Geometry Geometry to calculate distance to
Résultat double

Geometry() public méthode

Returns an indexed geometry in the collection
public Geometry ( int N ) : System.Point
N int Geometry index
Résultat System.Point

GetBoundingBox() public méthode

The minimum bounding box for this Geometry.
public GetBoundingBox ( ) : BoundingBox
Résultat BoundingBox

GetEnumerator() public méthode

Gets an enumerator for enumerating the geometries in the GeometryCollection
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

Intersection() public méthode

Returns a geometry that represents the point set intersection of this Geometry with anotherGeometry.
public Intersection ( Geometry geom ) : Geometry
geom Geometry Geometry to intersect with
Résultat Geometry

IsEmpty() public méthode

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.
public IsEmpty ( ) : bool
Résultat bool

IsSimple() public méthode

Returns 'true' if this Geometry has no anomalous geometric points, such as self intersection or self tangency. The description of each instantiable geometric class will include the specific conditions that cause an instance of that class to be classified as not simple.
public IsSimple ( ) : bool
Résultat bool

MultiPoint() public méthode

Initializes a new MultiPoint collection
public MultiPoint ( ) : System
Résultat System

SymDifference() public méthode

Returns a geometry that represents the point set symmetric difference of this Geometry with anotherGeometry.
public SymDifference ( Geometry geom ) : Geometry
geom Geometry Geometry to compare to
Résultat Geometry

Union() public méthode

Returns a geometry that represents the point set union of this Geometry with anotherGeometry.
public Union ( Geometry geom ) : Geometry
geom Geometry Geometry to union with
Résultat Geometry

this() public méthode

Gets the n'th point in the MultiPoint collection
public this ( int n ) : System.Point
n int Index in collection
Résultat System.Point