We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, iris.feature.COASTLINE should pick the best scale for the desired map.
iris.feature.COASTLINE
Also, make it possible for users to do:
ax.add_feature(cfeat.COASTLINE, scale='10m')
The text was updated successfully, but these errors were encountered:
👎 for that syntax. It suggests that scale is a generic keyword argument understood by Feature instances (via what method?).
scale
Feature
Instead, how about:
ax.add_feature(cfeat.Coastline(scale='10m'))
Sorry, something went wrong.
Manual scale choice was done in #898 and automatic scale picking was done in #1102.
No branches or pull requests
For example,
iris.feature.COASTLINE
should pick the best scale for the desired map.Also, make it possible for users to do:
ax.add_feature(cfeat.COASTLINE, scale='10m')
The text was updated successfully, but these errors were encountered: