You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Showing a zoomed in portion of the global map can provide further examples of using cartopy features such as:
using the dataframe.sel(lat=x,lon=y,method='nearest') method to select the lat/lon extent.
resolving the coastlines to cartopy.feature.coastlines('10m'), which will show coastlines at 10m resolution. This is good if you are plotting a specific region.
If zoomed in on the mid Atlantic bight you could use cartopy.feature.STATES to show state lines.
This can be accomplished by doing ax.add_feature(cartopy.feature.STATES) or ax.coastlines('10m').
This is an important aspect for oceanographers because we often analyze data in specific regions, unless the study is specific to global data, and showing these features allows for better interpretation for data location.
The text was updated successfully, but these errors were encountered:
Showing a zoomed in portion of the global map can provide further examples of using cartopy features such as:
This can be accomplished by doing ax.add_feature(cartopy.feature.STATES) or ax.coastlines('10m').
This is an important aspect for oceanographers because we often analyze data in specific regions, unless the study is specific to global data, and showing these features allows for better interpretation for data location.
The text was updated successfully, but these errors were encountered: