Glen Passow
Glen Passow

Reputation: 1

Python package for plotting in Arctic Stereographic CRS

I am plotting the drift track of multiple buoys in the arctic. I need a map in the polar stereographic projection and then to plot many latitude/longitude pairs from a dataframe on the the map. What packages work with this. I thought that Folium looked really nice, but I don't think that it can do different projections. There is also basemap, cartopy...

Any thoughts?

Upvotes: 0

Views: 667

Answers (2)

Wilson Sauthoff
Wilson Sauthoff

Reputation: 490

GeoViews supports NorthPolarStereo projection. GeoViews using a Bokeh extension support map interactivity like panning and zoom similar to Folium.

Upvotes: 0

kaedonkers
kaedonkers

Reputation: 46

Cartopy supports a north polar stereographic projection and can be used with matplotlib to create a map and plot datapoints. The Cartopy documentation includes examples of how to plot points on a map projection.

Upvotes: 2

Related Questions