Class GeographicBoundingBox
Represents a rectangle, oriented to the x and y axes, which bounds a geographic feature or a geographic dataset.
Implements
Inherited Members
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class GeographicBoundingBox : NotificationObject, INotifyPropertyChanged
Remarks
The BoundingBox describes the full extent of the geographic coverage, and is designed to be used by systems that search for geography by coordinates.
Properties
EastLongitude
Gets or sets the east longitude of the bounding box.
Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 520)]
public double EastLongitude { get; set; }
Property Value
Type | Description |
---|---|
double | The east longitude. |
HasValue
Gets a value indicating whether the object has any content.
Declaration
public bool HasValue { get; }
Property Value
Type | Description |
---|---|
bool |
|
NorthLatitude
Gets or sets the north latitude of the bounding box.
Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 530)]
public double NorthLatitude { get; set; }
Property Value
Type | Description |
---|---|
double | The north latitude. |
SouthLatitude
Gets or sets the south latitude of the bounding box.
Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 540)]
public double SouthLatitude { get; set; }
Property Value
Type | Description |
---|---|
double | The south latitude. |
WestLongitude
Gets or sets the west longitude of the bounding box.
Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 500)]
public double WestLongitude { get; set; }
Property Value
Type | Description |
---|---|
double | The west longitude. |