Dropbox .NET SDK
Show / Hide Table of Contents

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.

Inheritance
object
ApiExifGpsMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiExifGpsMetadata

Constructors

View Source

ApiExifGpsMetadata(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 Source

Altitude

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
View Source

Datestamp

Gets the datestamp of the api exif gps metadata

Declaration
public string Datestamp { get; protected set; }
Property Value
Type Description
string
View Source

Latitude

Latitude / longitude in decimal degrees (positive = N/E, negative = S/W).

Declaration
public float Latitude { get; protected set; }
Property Value
Type Description
float
View Source

Longitude

Gets the longitude of the api exif gps metadata

Declaration
public float Longitude { get; protected set; }
Property Value
Type Description
float
View Source

Timestamp

Timestamp / datestamp of the GPS fix, in the EXIF-provided format.

Declaration
public string Timestamp { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK