Class Pose
Raw pose measurement for an entity.
Implements
Inherited Members
Namespace: Google.Apis.StreetViewPublish.v1.Data
Assembly: Google.Apis.StreetViewPublish.v1.dll
Syntax
public class Pose : IDirectResponseSchema
Properties
AccuracyMeters
The estimated horizontal accuracy of this pose in meters with 68% confidence (one standard deviation). For example, on Android, this value is available from this method: https://developer.android.com/reference/android/location/Location#getAccuracy(). Other platforms have different methods of obtaining similar accuracy estimations.
Declaration
[JsonProperty("accuracyMeters")]
public virtual float? AccuracyMeters { get; set; }
Property Value
Type | Description |
---|---|
float? |
Altitude
Altitude of the pose in meters above WGS84 ellipsoid. NaN indicates an unmeasured quantity.
Declaration
[JsonProperty("altitude")]
public virtual double? Altitude { get; set; }
Property Value
Type | Description |
---|---|
double? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GpsRecordTimestampUnixEpoch
object representation of GpsRecordTimestampUnixEpochRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use GpsRecordTimestampUnixEpochDateTimeOffset instead.")]
public virtual object GpsRecordTimestampUnixEpoch { get; set; }
Property Value
Type | Description |
---|---|
object |
GpsRecordTimestampUnixEpochDateTimeOffset
DateTimeOffset representation of GpsRecordTimestampUnixEpochRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? GpsRecordTimestampUnixEpochDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
GpsRecordTimestampUnixEpochRaw
Time of the GPS record since UTC epoch.
Declaration
[JsonProperty("gpsRecordTimestampUnixEpoch")]
public virtual string GpsRecordTimestampUnixEpochRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
Heading
The following pose parameters pertain to the center of the photo. They match https://developers.google.com/streetview/spherical-metadata. Compass heading, measured at the center of the photo in degrees clockwise from North. Value must be >=0 and <360. NaN indicates an unmeasured quantity.
Declaration
[JsonProperty("heading")]
public virtual double? Heading { get; set; }
Property Value
Type | Description |
---|---|
double? |
LatLngPair
Latitude and longitude pair of the pose, as explained here: https://cloud.google.com/datastore/docs/reference/rest/Shared.Types/LatLng When creating a Photo, if the latitude and longitude pair are not provided, the geolocation from the exif header is used. A latitude and longitude pair not provided in the photo or exif header causes the photo process to fail.
Declaration
[JsonProperty("latLngPair")]
public virtual LatLng LatLngPair { get; set; }
Property Value
Type | Description |
---|---|
LatLng |
Level
Level (the floor in a building) used to configure vertical navigation.
Declaration
[JsonProperty("level")]
public virtual Level Level { get; set; }
Property Value
Type | Description |
---|---|
Level |
Pitch
Pitch, measured at the center of the photo in degrees. Value must be >=-90 and <= 90. A value of -90 means looking directly down, and a value of 90 means looking directly up. NaN indicates an unmeasured quantity.
Declaration
[JsonProperty("pitch")]
public virtual double? Pitch { get; set; }
Property Value
Type | Description |
---|---|
double? |
Roll
Roll, measured in degrees. Value must be >= 0 and <360. A value of 0 means level with the horizon. NaN indicates an unmeasured quantity.
Declaration
[JsonProperty("roll")]
public virtual double? Roll { get; set; }
Property Value
Type | Description |
---|---|
double? |