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 in decimal degrees (positive = north, negative = south). |
| float | longitude | Longitude in decimal degrees (positive = east, negative = west). |
| string | altitude | Altitude in meters, as reported by the source (string to preserve the original representation, which may include a reference direction). |
| string | timestamp | Time of the GPS fix, in the EXIF-provided format. |
| string | datestamp | Date of the GPS fix, in the EXIF-provided format. |
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
Date of the GPS fix, in the EXIF-provided format.
Declaration
public string Datestamp { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Latitude
Latitude in decimal degrees (positive = north, negative = south).
Declaration
public float Latitude { get; protected set; }
Property Value
| Type | Description |
|---|---|
| float |
Longitude
Longitude in decimal degrees (positive = east, negative = west).
Declaration
public float Longitude { get; protected set; }
Property Value
| Type | Description |
|---|---|
| float |
Timestamp
Time of the GPS fix, in the EXIF-provided format.
Declaration
public string Timestamp { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |