-
Notifications
You must be signed in to change notification settings - Fork 391
DOC: whats new v0.20 #1867
New issue
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
Merged
Merged
DOC: whats new v0.20 #1867
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,7 @@ Versions | |
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| v0.20 | ||
| v0.19 | ||
| v0.18 | ||
| v0.17 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| Version 0.20 (September 17, 2021) | ||
| ================================= | ||
|
|
||
| For a full list of included Pull Requests and closed Issues, please see the | ||
| `0.20 milestone <https://github.com/SciTools/cartopy/milestone/29>`_. | ||
|
|
||
| Features | ||
| -------- | ||
|
|
||
| * We have updated the minimum versions of dependencies following the | ||
| guidelines of NEP29. This includes the required dependencies, which are now | ||
| Python>=3.7, GEOS>=3.7.2, shapely>=1.6.4, pyshp>=2.1, numpy>=1.18, | ||
| matplotlib>=3.1, PROJ>=8.0, and pyproj>=3.0 | ||
|
|
||
| * Stephane Raynaud added the ``cartopy_feature_download.py`` script to the | ||
| installation bundle, making it accessible to everyone and Ruth Comer updated | ||
| the NaturalEarth url to download from the new AWS cloud host. | ||
| (:pull:`1602`, :pull:`1833`) | ||
|
|
||
| * Louis Moresi updated the Mapbox API to download from their new endpoints. | ||
| (:pull:`1763`) | ||
|
|
||
| * Stephane Raynaud updated the visibility handling for labels (:pull:`1537`) | ||
|
|
||
| * @muchjp added the ability for the gridliner to handle shorthand keyword | ||
| arguments (e.g., c for color). (:pull:`1818`) | ||
|
|
||
| * Greg Lucas reorganized the documentation and updated the theme to use the | ||
| pydata-sphinx-theme. (:pull:`1652`) | ||
|
|
||
| * John Krasting extended the InterruptedGoodeHomolosine projection to add | ||
| an ocean emphasis option. (:pull:`1561`) | ||
|
|
||
| .. plot:: | ||
| :width: 400pt | ||
|
|
||
| import matplotlib.pyplot as plt | ||
| import numpy as np | ||
| import cartopy.crs as ccrs | ||
|
|
||
| fig = plt.figure(figsize=(10, 5)) | ||
| proj = ccrs.InterruptedGoodeHomolosine(central_longitude=-160, | ||
| emphasis='ocean') | ||
| ax = plt.axes(projection=proj) | ||
| ax.stock_img() | ||
|
|
||
| plt.show() | ||
|
|
||
| * Max H. Balsmeier updated the GSHHS coastlines that are used by Cartopy. | ||
| (:pull:`1823`) | ||
|
|
||
| * Yihe Xu added the ability to adjust the threshold of the projections. | ||
| (:pull:`1815`) | ||
|
|
||
| * Rahul Mahajan added an environment variable to point to site-wide data | ||
| installation directories. (:pull:`1827`) | ||
|
|
||
| * Alan D. Snow updated Cartopy to use pyproj for coordinate transformations, | ||
| which enables the use of newer PROJ versions. (:pull:`1808`) | ||
|
|
||
| * Thomas Grainger and Elliott Sales de Andrade bumped the minimum Python | ||
| dependency to 3.7. (:pull:`1844`) | ||
|
|
||
| * Greg Lucas updated the default zorder for features to be 1.5, which is | ||
| above patches and below lines. This is in preparation for a change in | ||
| artist orders with Matplotlib 3.5. (:pull:`1840`) | ||
|
|
||
| * Ryan May updated the Geostationary projection boundary to properly | ||
greglucas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| calculate the boundary ellipse. (:pull:`1829`) | ||
|
|
||
| .. figure:: ../gallery/miscellanea/images/sphx_glr_eccentric_ellipse_001.png | ||
| :target: ../gallery/miscellanea/eccentric_ellipse.html | ||
| :align: center | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.