메소드 | 설명 | |
---|---|---|
Write ( IGeometry geometry ) : string |
Converts a Geometry to its Well-known Text representation.
|
|
Write ( IGeometry geometry, StringWriter writer ) : void |
Converts a Geometry to its Well-known Text representation. Geometry is written to the output stream as <Gemoetry Tagged Text> string (see the OpenGIS Simple Features Specification). |
메소드 | 설명 | |
---|---|---|
AppendCoordinate ( System.Point coordinate, |
Converts a Coordinate to <Point> format, then Appends it to the writer.
|
|
AppendGeometryCollectionTaggedText ( GeometryCollection geometryCollection, StringWriter writer ) : void |
Converts a GeometryCollection to <GeometryCollection Tagged Text> format, then Appends it to the writer.
|
|
AppendGeometryCollectionText ( GeometryCollection geometryCollection, StringWriter writer ) : void |
Converts a GeometryCollection to <GeometryCollection Text > format, then Appends it to the writer.
|
|
AppendGeometryTaggedText ( IGeometry geometry, StringWriter writer ) : void |
Converts a Geometry to <Geometry Tagged Text > format, then Appends it to the writer.
|
|
AppendLineStringTaggedText ( LineString lineString, StringWriter writer ) : void |
Converts a LineString to LineString tagged text format,
|
|
AppendLineStringText ( LineString lineString, StringWriter writer ) : void |
Converts a LineString to <LineString Text> format, then Appends it to the writer.
|
|
AppendMultiLineStringTaggedText ( MultiLineString multiLineString, StringWriter writer ) : void |
Converts a MultiLineString to <MultiLineString Tagged Text> format, then Appends it to the writer.
|
|
AppendMultiLineStringText ( MultiLineString multiLineString, StringWriter writer ) : void |
Converts a MultiLineString to <MultiLineString Text> format, then Appends it to the writer.
|
|
AppendMultiPointTaggedText ( MultiPoint multipoint, StringWriter writer ) : void |
Converts a MultiPoint to <MultiPoint Tagged Text> format, then Appends it to the writer.
|
|
AppendMultiPointText ( MultiPoint multiPoint, StringWriter writer ) : void |
Converts a MultiPoint to <MultiPoint Text> format, then Appends it to the writer.
|
|
AppendMultiPolygonTaggedText ( MultiPolygon multiPolygon, StringWriter writer ) : void |
Converts a MultiPolygon to <MultiPolygon Tagged Text> format, then Appends it to the writer.
|
|
AppendMultiPolygonText ( MultiPolygon multiPolygon, StringWriter writer ) : void |
Converts a MultiPolygon to <MultiPolygon Text> format, then Appends to it to the writer.
|
|
AppendPointTaggedText ( Point coordinate, StringWriter writer ) : void |
Converts a Coordinate to <Point Tagged Text> format, then Appends it to the writer.
|
|
AppendPointText ( Point coordinate, StringWriter writer ) : void |
Converts a Coordinate to Point Text format then Appends it to the writer.
|
|
AppendPolygonTaggedText ( Polygon polygon, StringWriter writer ) : void |
Converts a Polygon to <Polygon Tagged Text> format, then Appends it to the writer.
|
|
AppendPolygonText ( Polygon polygon, StringWriter writer ) : void |
Converts a Polygon to <Polygon Text> format, then Appends it to the writer.
|
|
WriteNumber ( double d ) : string |
Converts a double to a string, not in scientific notation.
|
public static Write ( IGeometry geometry ) : string | ||
geometry | IGeometry | A Geometry to write. |
리턴 | string |
public static Write ( IGeometry geometry, StringWriter writer ) : void | ||
geometry | IGeometry | A geometry to process. |
writer | StringWriter | Stream to write out the geometry's text representation. |
리턴 | void |