Class ApiExifGpsMetadata
GPS coordinates and related tags extracted from image EXIF data. Fields are populated on a best-effort basis and may be empty when absent from the source file.
Inherited Members
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiExifGpsMetadata
Constructors
View SourceApiExifGpsMetadata(float, float, string, string, string)
Initializes a new instance of the ApiExifGpsMetadata class.
Declaration
public ApiExifGpsMetadata(float latitude = 0, float longitude = 0, string altitude = "", string timestamp = "", string datestamp = "")
Parameters
| Type | Name | Description |
|---|---|---|
| float | latitude | Latitude / longitude in decimal degrees (positive = N/E, negative = S/W). |
| float | longitude | The longitude |
| string | altitude | Altitude in meters, as reported by the source (string to preserve the original representation, which may include a reference direction). |
| string | timestamp | Timestamp / datestamp of the GPS fix, in the EXIF-provided format. |
| string | datestamp | The datestamp |
Properties
View SourceAltitude
Altitude in meters, as reported by the source (string to preserve the original representation, which may include a reference direction).
Declaration
public string Altitude { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Datestamp
Gets the datestamp of the api exif gps metadata
Declaration
public string Datestamp { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Latitude
Latitude / longitude in decimal degrees (positive = N/E, negative = S/W).
Declaration
public float Latitude { get; protected set; }
Property Value
| Type | Description |
|---|---|
| float |
Longitude
Gets the longitude of the api exif gps metadata
Declaration
public float Longitude { get; protected set; }
Property Value
| Type | Description |
|---|---|
| float |
Timestamp
Timestamp / datestamp of the GPS fix, in the EXIF-provided format.
Declaration
public string Timestamp { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |