Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aspose-com-gists/2ab20db4447d660eb8565ce08a24bc3a to your computer and use it in GitHub Desktop.

Select an option

Save aspose-com-gists/2ab20db4447d660eb8565ce08a24bc3a to your computer and use it in GitHub Desktop.
GPX to CSV Conversion Guide using Python
from aspose.gis import VectorLayer, ConversionOptions
from aspose.gis import Drivers
# Convert file format from GPX to CSV.
VectorLayer.convert(
"Data/sample.gpx",
Drivers.gpx,
"output/destination.csv",
Drivers.csv
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment