Class PackedFloatCoordinateSequence
Packed coordinate sequence implementation based on floats.
Inherited Members
Namespace: NetTopologySuite.Geometries.Implementation
Assembly: NetTopologySuite.dll
Syntax
[Serializable]
public class PackedFloatCoordinateSequence : PackedCoordinateSequence
Constructors
| Improve this Doc View SourcePackedFloatCoordinateSequence(Coordinate[])
Initializes a new instance of the PackedDoubleCoordinateSequence class.
Declaration
public PackedFloatCoordinateSequence(Coordinate[] coords)
Parameters
Type | Name | Description |
---|---|---|
Coordinate[] | coords | An array of Coordinates. |
PackedFloatCoordinateSequence(Coordinate[], Int32)
Initializes a new instance of the PackedFloatCoordinateSequence class.
Declaration
[Obsolete("Use an overload that accepts measures. This overload will be removed in a future release.")]
public PackedFloatCoordinateSequence(Coordinate[] coords, int dimension)
Parameters
Type | Name | Description |
---|---|---|
Coordinate[] | coords | An array of Coordinates. |
Int32 | dimension | The total number of ordinates that make up a Coordinate in this sequence. |
PackedFloatCoordinateSequence(Coordinate[], Int32, Int32)
Initializes a new instance of the PackedFloatCoordinateSequence class.
Declaration
public PackedFloatCoordinateSequence(Coordinate[] coords, int dimension, int measures)
Parameters
Type | Name | Description |
---|---|---|
Coordinate[] | coords | An array of Coordinates. |
Int32 | dimension | The total number of ordinates that make up a Coordinate in this sequence. |
Int32 | measures | The number of measure-ordinates each Coordinate in this sequence has. |
PackedFloatCoordinateSequence(Double[], Int32, Int32)
Initializes a new instance of the PackedFloatCoordinateSequence class.
Declaration
public PackedFloatCoordinateSequence(double[] coords, int dimension, int measures)
Parameters
Type | Name | Description |
---|---|---|
Double[] | coords | An array of |
Int32 | dimension | The total number of ordinates that make up a Coordinate in this sequence. |
Int32 | measures | The number of measure-ordinates each Coordinate in this sequence has. |
PackedFloatCoordinateSequence(Int32, Int32, Int32)
Initializes a new instance of the PackedFloatCoordinateSequence class.
Declaration
public PackedFloatCoordinateSequence(int size, int dimension, int measures)
Parameters
Type | Name | Description |
---|---|---|
Int32 | size | |
Int32 | dimension | |
Int32 | measures |
PackedFloatCoordinateSequence(Single[], Int32, Int32)
Initializes a new instance of the PackedFloatCoordinateSequence class.
Declaration
public PackedFloatCoordinateSequence(float[] coords, int dimension, int measures)
Parameters
Type | Name | Description |
---|---|---|
Single[] | coords | An array of |
Int32 | dimension | The total number of ordinates that make up a Coordinate in this sequence. |
Int32 | measures | The number of measure-ordinates each Coordinate in this sequence has. |
Methods
| Improve this Doc View SourceCopy()
Declaration
public override CoordinateSequence Copy()
Returns
Type | Description |
---|---|
CoordinateSequence |
Overrides
| Improve this Doc View SourceExpandEnvelope(Envelope)
Expands the given Envelope to include the coordinates in the sequence. Allows implementing classes to optimize access to coordinate values.
Declaration
public override Envelope ExpandEnvelope(Envelope env)
Parameters
Type | Name | Description |
---|---|---|
Envelope | env | The envelope to expand. |
Returns
Type | Description |
---|---|
Envelope | A reference to the expanded envelope. |
Overrides
| Improve this Doc View SourceGetOrdinate(Int32, Int32)
Returns the ordinate of a coordinate in this sequence. Ordinate indices 0 and 1 are assumed to be X and Y. Ordinate indices greater than 1 have user-defined semantics (for instance, they may contain other dimensions or measure values).
Declaration
public override double GetOrdinate(int index, int ordinateIndex)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The coordinate index in the sequence. |
Int32 | ordinateIndex | The ordinate index in the coordinate (in range [0, dimension-1]). |
Returns
Type | Description |
---|---|
Double |
Overrides
Remarks
Beware, for performance reasons the ordinate index is not checked, if it's over dimensions you may not get an exception but a meaningless value.
GetRawCoordinates()
Gets the underlying array containing the coordinate values.
Declaration
public float[] GetRawCoordinates()
Returns
Type | Description |
---|---|
Single[] | The array of coordinate values |
Reversed()
Declaration
public override CoordinateSequence Reversed()
Returns
Type | Description |
---|---|
CoordinateSequence |
Overrides
| Improve this Doc View SourceSetOrdinate(Int32, Int32, Double)
Sets the ordinate of a coordinate in this sequence.
Declaration
public override void SetOrdinate(int index, int ordinateIndex, double value)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The coordinate index. |
Int32 | ordinateIndex | The ordinate index in the coordinate, 0 based, smaller than the number of dimensions. |
Double | value | The new ordinate value. |
Overrides
Remarks
Warning: for performance reasons the ordinate index is not checked: if it is over dimensions you may not get an exception but a meaningless value.