Release: | 0.9.0 |
---|---|
Date: | 12 September 2013 |
We are very pleased to announce that Bill Little was added to the cartopy core development team. Bill has made some excellent contributions to cartopy, and his presentation at EuroScipy‘13 on “Iris & Cartopy” was voted best talk of the conference.
Other talks and tutorials during this release cycle include Phil Elson’s talk at SciPy‘13 (with video), Thomas Lecocq’s tutorial at EuroSciPy and a forthcoming talk at FOSS4G.
Christoph Gohlke updated cartopy to support Windows 7.
The Plate Carree projection was updated to fully handle arbitrary globe definitions.
Peter Killick updated the Mercator class’ default globe to WGS84. His refactor paved the way for some follow on work to fully implement the Google Spherical Mercator (EPSG:3857) projection.
The TransverseMercator class saw a tidy up to include several common arguments (ticket)
Bill Little added the Geostationary projection to allow geolocation of satellite imagery.
Byron Blay added the Lambert conformal conic projection.
Release: | 0.8.0 |
---|---|
Date: | 3 June 2013 |
Release: | 0.7.0 |
---|---|
Date: | 21 Mar 2013 |
This is a quick release which targets two very specific requirements. The goals outlined in the development plan at v0.6 still remain the primary target for v0.8 and beyond.
Release: | 0.6.0 |
---|---|
Date: | 19 Feb 2013 |
Release: | 0.5.0 |
---|---|
Date: | 7 Dec 2012 |
This document explains the new/changed features of cartopy in version 0.5.
Release 0.5 of cartopy continues the work to expand the feature-set of cartopy to encompass common operations, and provide performance improvements.
A summary of the main features added with version 0.5:
None
A new features api is now available, see Using the cartopy shapereader.
import cartopy
import matplotlib.pyplot as plt
def main():
ax = plt.axes(projection=cartopy.crs.PlateCarree())
ax.add_feature(cartopy.feature.LAND)
ax.add_feature(cartopy.feature.OCEAN)
ax.add_feature(cartopy.feature.COASTLINE)
ax.add_feature(cartopy.feature.BORDERS, linestyle=':')
ax.add_feature(cartopy.feature.LAKES, alpha=0.5)
ax.add_feature(cartopy.feature.RIVERS)
ax.set_extent([-20, 60, -40, 40])
plt.show()
if __name__ == '__main__':
main()