Struct gapi_grpc::google::streetview::publish::v1::Pose[][src]

pub struct Pose {
    pub lat_lng_pair: Option<LatLng>,
    pub altitude: f64,
    pub heading: f64,
    pub pitch: f64,
    pub roll: f64,
    pub level: Option<Level>,
    pub accuracy_meters: f32,
}

Raw pose measurement for an entity.

Fields

lat_lng_pair: Option<LatLng>

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][google.streetview.publish.v1.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 create photo process to fail.

altitude: f64

Altitude of the pose in meters above WGS84 ellipsoid. NaN indicates an unmeasured quantity.

heading: f64

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.

pitch: f64

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.

roll: f64

Roll, measured in degrees. Value must be >= 0 and <360. A value of 0 means level with the horizon. NaN indicates an unmeasured quantity.

level: Option<Level>

Level (the floor in a building) used to configure vertical navigation.

accuracy_meters: f32

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.

Trait Implementations

impl Clone for Pose[src]

impl Debug for Pose[src]

impl Default for Pose[src]

impl Message for Pose[src]

impl PartialEq<Pose> for Pose[src]

impl StructuralPartialEq for Pose[src]

Auto Trait Implementations

impl RefUnwindSafe for Pose

impl Send for Pose

impl Sync for Pose

impl Unpin for Pose

impl UnwindSafe for Pose

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]