Group Abstract Group Abstract

Message Boards Message Boards

GeoGraphics/Import: Change color of an imported GPX

Posted 1 day ago

Given the following code:

Import["https://www.gloriouslyawkward.com/wp-content/uploads/2025/03/2025-03-26-225828-Outdoor-Walking-Stevens-Apple-Watch.gpx", 
 GeoBackground -> "SatelliteWithLabels"]

How do I make the line a different color instead of the default black?

Attachment

Attachments:
POSTED BY: Steven Buehler

I would suggest to extract the data and then manipulate it in GeoGraphics as you want. For example:

data = Import["https://www.gloriouslyawkward.com/wp-content/uploads/2025/03/2025-03-26-225828-Outdoor-Walking-Stevens-Apple-Watch.gpx", "Data"];

lines = Lookup[data[[1]], "Geometry"];

GeoGraphics[{Red, Thick, lines}, GeoBackground -> "Satellite"]

enter image description here

Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard