Table of Contents

Class GeoJson3DProjectedCoordinates

Namespace
MongoDB.Driver.GeoJsonObjectModel
Assembly
MongoDB.Driver.dll

Represents a GeoJson 3D projected position (easting, northing, altitude).

[BsonSerializer(typeof(GeoJson3DProjectedCoordinatesSerializer))]
public class GeoJson3DProjectedCoordinates : GeoJsonCoordinates, IEquatable<GeoJsonCoordinates>
Inheritance
GeoJson3DProjectedCoordinates
Implements
Inherited Members

Constructors

GeoJson3DProjectedCoordinates(double, double, double)

Initializes a new instance of the GeoJson3DProjectedCoordinates class.

public GeoJson3DProjectedCoordinates(double easting, double northing, double altitude)

Parameters

easting double

The easting.

northing double

The northing.

altitude double

The altitude.

Properties

Altitude

Gets the altitude.

public double Altitude { get; }

Property Value

double

Easting

Gets the easting.

public double Easting { get; }

Property Value

double

Northing

Gets the northing.

public double Northing { get; }

Property Value

double

Values

Gets the coordinate values.

public override ReadOnlyCollection<double> Values { get; }

Property Value

ReadOnlyCollection<double>