📜  gpx 到 json python - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:25.651000             🧑  作者: Mango

代码示例1
dic = Converter(input_file='your_input.gpx').gpx_to_dictionary(latitude_key='latitude', longitude_key='longitude')
# now you have a dictionary and can access the longitudes and latitudes values from the keys
latitudes = dic['latitude']
longitudes = dic['longitude']