KonradIT / gopro-py-api

Unofficial GoPro API Library for Python - connect to GoPro via WiFi.
MIT License
1.39k stars 211 forks source link

Query GPS Data #145

Open brendankristiansen opened 4 years ago

brendankristiansen commented 4 years ago

Is your feature request related to a problem? Please describe.

I am developing an app to control a camera's image collection based on motion. I would like to be able to query the camera for GPS position, speed, and heading.

Describe the solution you'd like

A function to get GPS data, maybe in a struct-style format or a dictionary.


class GPSDataFrame:
    lat: float
    lon: float
    speed: float
    heading: float

or...


{ lat: float, lon: float, speed: float, heading: float}

Describe alternatives you've considered

Functionality could also be built into the get status function.

Additional context

None