Accepting request 709778 from home:TheBlackCat:branches:Application:Geo
- Update to 2.2.0
* Minimum PROJ version is now 6.1.0
+ `pyproj.crs` updates:
* Updated CRS repr (issue #264)
* Add Datum, CoordinateSystem, CoordinateOperation clases (issue #262)
* Added :meth:`~pyproj.crs.CRS.to_cf` and :meth:`~pyproj.crs.CRS.from_cf` for
converting to/from Climate and Forcast (CF) 1.8 grid mappings (pull #244)
* Added :meth:`~pyproj.crs.CRS.to_dict` (issue #226)
* Added :meth:`~pyproj.crs.CRS.to_authority` (pull #294)
* Added :attr:`~pyproj.crs.CRS.is_vertical` and :attr:`~pyproj.crs.CRS.is_engineering` (issue #316)
* Added :attr:`~pyproj.crs.CRS.target_crs` (pull #328)
* Provide option to "pretty print" WKT in :attr:`~pyproj.crs.CRS.to_wkt` (issue #258)
* Add support for Bound and Compound CRS for :attr:`~pyproj.crs.CRS.is_geographic`, :attr:`~pyproj.crs.CRS.is_projected` (issue #274)
* Add support for Bound CRS for :attr:`~pyproj.crs.CRS.is_geocentric` (issue #374)
* Add support for comparison with CRS a non-crs type supported by :meth:`~pyproj.crs.CRS.from_user_input` (issue #312)
* Added support for ITRF, compound EPSG, and urn projection strings in CRS (pull #289)
* Better handle Compound CRS (issue #265)
* Disallow creation of non-CRS object (eg pipeline) in CRS class (issue #267)
* Added check in :meth:`~pyproj.crs.CRS.to_epsg` for when `proj_list` is null (issue #257)
* Fix comparing classes of non-instance types (issue #310)
+ `pyroj.transformer` updates:
* Added `always_xy` option to Transformer so the transform method will
always accept as input and return as output coordinates using the
traditional GIS order, that is longitude, latitudecfor geographic
CRS and easting, northing for most projected CRS (issue #225)
* Provide `direction` option in :meth:`~pyproj.transformer.Transformer.transform` (issue #266)
* Add check for valid initialization of Transformer and ensure it is a transformer (issue #321)
* Added :meth:`~pyproj.transformer.Transformer.to_wkt` as well as attributes related to `PJ_PROJ_INFO` (pull #322)
* Undo deprecation of :meth:`~pyproj.transformer.Transformer.from_crs` (issue #275)
* Fix false positive errors raised in transformer (issue #249)
* Fix :class:`~pyproj.proj.Proj` initialization from DerivedGeographicCRS (issue #270)
* Add interface to get the projection/ellps/prime_meridian/units lists (issue #251)
* Docs/Build/Test fixes (pull #278, pull #245, pull #248, pull #247, issue #253, pull #252)
- Update to 2.1.3
* Added support for time transformations (issue #208)
* Fixed projection equivalence testing for transformations (pull #231).
* Switch to pytest for testing (pull #230)
* Various testing fixes (pull #223, #222, #221, #220)
* Convert PROJ error messages from bytes to strings (pull #219)
* Fix data dir path separator to be (;) for windows and (:) for linux (pull #234)
- Update to 2.1.2
* Updated to use the CRS definition for Proj instances in transforms (issue #207)
* Add option to skip tranformation operation if input and output projections are equivalent
and always skip if the input and output projections are exact (issue #128)
* Update setup.py method for checking PROJ version (pull #211)
* Add internal proj error log messages to exceptions (pull #215)
- Update to 2.1.1
* Restore behavior of 1.9.6 when illegal projection transformation requested
(return ``inf`` instead of raising an exception, issue #202). kwarg ``errcheck``
added to :func:`~pyproj.transformer.transform` and :func:`~pyproj.transformer.itransform`
(default ``False``). When ``errcheck=True`` an exception is raised.
- Update to 2.1.0
* Added :class:`~pyproj.transformer.Transformer` to make repetitive transformations more efficient (issue #187)
* Added fix for using local datumgrids with transform (issue #191)
* Added :meth:`~pyproj.transformer.Transformer.from_pipeline` to support pipeline transformations.
* Added fix for conversion between radians/degrees for transformations (issues #192 & #195)
- Update to 2.0.2
* add filter for boolean values in dict2string so "no_rot=True" works (issue #183).
* make sure .pxd files included in source tarball.
* add radians flag back in for transform/itransform (issue #185).
- Run unit tests
- Fix dependencies
OBS-URL: https://build.opensuse.org/request/show/709778
OBS-URL: https://build.opensuse.org/package/show/Application:Geo/python-pyproj?expand=0&rev=9
2019-07-17 17:35:06 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Jun 12 20:41:02 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
|
|
|
|
|
|
|
|
|
- Update to 2.2.0
|
|
|
|
|
* Minimum PROJ version is now 6.1.0
|
|
|
|
|
+ `pyproj.crs` updates:
|
|
|
|
|
* Updated CRS repr (issue #264)
|
|
|
|
|
* Add Datum, CoordinateSystem, CoordinateOperation clases (issue #262)
|
|
|
|
|
* Added :meth:`~pyproj.crs.CRS.to_cf` and :meth:`~pyproj.crs.CRS.from_cf` for
|
|
|
|
|
converting to/from Climate and Forcast (CF) 1.8 grid mappings (pull #244)
|
|
|
|
|
* Added :meth:`~pyproj.crs.CRS.to_dict` (issue #226)
|
|
|
|
|
* Added :meth:`~pyproj.crs.CRS.to_authority` (pull #294)
|
|
|
|
|
* Added :attr:`~pyproj.crs.CRS.is_vertical` and :attr:`~pyproj.crs.CRS.is_engineering` (issue #316)
|
|
|
|
|
* Added :attr:`~pyproj.crs.CRS.target_crs` (pull #328)
|
|
|
|
|
* Provide option to "pretty print" WKT in :attr:`~pyproj.crs.CRS.to_wkt` (issue #258)
|
|
|
|
|
* Add support for Bound and Compound CRS for :attr:`~pyproj.crs.CRS.is_geographic`, :attr:`~pyproj.crs.CRS.is_projected` (issue #274)
|
|
|
|
|
* Add support for Bound CRS for :attr:`~pyproj.crs.CRS.is_geocentric` (issue #374)
|
|
|
|
|
* Add support for comparison with CRS a non-crs type supported by :meth:`~pyproj.crs.CRS.from_user_input` (issue #312)
|
|
|
|
|
* Added support for ITRF, compound EPSG, and urn projection strings in CRS (pull #289)
|
|
|
|
|
* Better handle Compound CRS (issue #265)
|
|
|
|
|
* Disallow creation of non-CRS object (eg pipeline) in CRS class (issue #267)
|
|
|
|
|
* Added check in :meth:`~pyproj.crs.CRS.to_epsg` for when `proj_list` is null (issue #257)
|
|
|
|
|
* Fix comparing classes of non-instance types (issue #310)
|
|
|
|
|
+ `pyroj.transformer` updates:
|
|
|
|
|
* Added `always_xy` option to Transformer so the transform method will
|
|
|
|
|
always accept as input and return as output coordinates using the
|
|
|
|
|
traditional GIS order, that is longitude, latitudecfor geographic
|
|
|
|
|
CRS and easting, northing for most projected CRS (issue #225)
|
|
|
|
|
* Provide `direction` option in :meth:`~pyproj.transformer.Transformer.transform` (issue #266)
|
|
|
|
|
* Add check for valid initialization of Transformer and ensure it is a transformer (issue #321)
|
|
|
|
|
* Added :meth:`~pyproj.transformer.Transformer.to_wkt` as well as attributes related to `PJ_PROJ_INFO` (pull #322)
|
|
|
|
|
* Undo deprecation of :meth:`~pyproj.transformer.Transformer.from_crs` (issue #275)
|
|
|
|
|
* Fix false positive errors raised in transformer (issue #249)
|
|
|
|
|
* Fix :class:`~pyproj.proj.Proj` initialization from DerivedGeographicCRS (issue #270)
|
|
|
|
|
* Add interface to get the projection/ellps/prime_meridian/units lists (issue #251)
|
|
|
|
|
* Docs/Build/Test fixes (pull #278, pull #245, pull #248, pull #247, issue #253, pull #252)
|
|
|
|
|
- Update to 2.1.3
|
|
|
|
|
* Added support for time transformations (issue #208)
|
|
|
|
|
* Fixed projection equivalence testing for transformations (pull #231).
|
|
|
|
|
* Switch to pytest for testing (pull #230)
|
|
|
|
|
* Various testing fixes (pull #223, #222, #221, #220)
|
|
|
|
|
* Convert PROJ error messages from bytes to strings (pull #219)
|
|
|
|
|
* Fix data dir path separator to be (;) for windows and (:) for linux (pull #234)
|
|
|
|
|
- Update to 2.1.2
|
|
|
|
|
* Updated to use the CRS definition for Proj instances in transforms (issue #207)
|
|
|
|
|
* Add option to skip tranformation operation if input and output projections are equivalent
|
|
|
|
|
and always skip if the input and output projections are exact (issue #128)
|
|
|
|
|
* Update setup.py method for checking PROJ version (pull #211)
|
|
|
|
|
* Add internal proj error log messages to exceptions (pull #215)
|
|
|
|
|
- Update to 2.1.1
|
|
|
|
|
* Restore behavior of 1.9.6 when illegal projection transformation requested
|
|
|
|
|
(return ``inf`` instead of raising an exception, issue #202). kwarg ``errcheck``
|
|
|
|
|
added to :func:`~pyproj.transformer.transform` and :func:`~pyproj.transformer.itransform`
|
|
|
|
|
(default ``False``). When ``errcheck=True`` an exception is raised.
|
|
|
|
|
- Update to 2.1.0
|
|
|
|
|
* Added :class:`~pyproj.transformer.Transformer` to make repetitive transformations more efficient (issue #187)
|
|
|
|
|
* Added fix for using local datumgrids with transform (issue #191)
|
|
|
|
|
* Added :meth:`~pyproj.transformer.Transformer.from_pipeline` to support pipeline transformations.
|
|
|
|
|
* Added fix for conversion between radians/degrees for transformations (issues #192 & #195)
|
|
|
|
|
- Update to 2.0.2
|
|
|
|
|
* add filter for boolean values in dict2string so "no_rot=True" works (issue #183).
|
|
|
|
|
* make sure .pxd files included in source tarball.
|
|
|
|
|
* add radians flag back in for transform/itransform (issue #185).
|
|
|
|
|
- Run unit tests
|
|
|
|
|
- Fix dependencies
|
|
|
|
|
|
2019-03-11 14:07:47 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Mon Mar 11 14:05:28 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
|
|
|
|
|
|
|
|
|
- Update to version 2.0.1:
|
|
|
|
|
* Ensure data path set properly for TransProj (pull request #179,
|
|
|
|
|
addressed issue #176).
|
|
|
|
|
- Changes for version 2.0.0:
|
|
|
|
|
* Update to PROJ.4 version 6.0.0 & removed support for older
|
|
|
|
|
PROJ.4 versions.
|
|
|
|
|
* Added pyproj.CRS class.
|
|
|
|
|
* Updated pyproj.Proj & pyproj.transform to accept any input
|
|
|
|
|
from CRS.from_user_input.
|
|
|
|
|
* Removed internal PROJ.4 source code.
|
|
|
|
|
* Changed default for preserve_units to be True in pyproj.Proj
|
|
|
|
|
class initialization.
|
|
|
|
|
* Modified logic for searching for the PROJ.4 data directory to
|
|
|
|
|
not conflict with older versions of PROJ.4.
|
|
|
|
|
* Added pyproject.toml.
|
|
|
|
|
- Temporarily disable tests
|
|
|
|
|
|
2019-02-05 11:07:48 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Feb 5 07:06:44 UTC 2019 - Bruno Friedmann <bruno@ioda-net.ch>
|
|
|
|
|
|
2019-03-06 08:05:34 +00:00
|
|
|
- update to 1.9.6 (python3.7 support)
|
2019-02-05 11:07:48 +00:00
|
|
|
- spec-cleaner minimal
|
|
|
|
|
|
2018-05-20 07:16:22 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue May 15 14:01:20 UTC 2018 - bruno@ioda-net.ch
|
|
|
|
|
|
|
|
|
|
- Packaging :
|
|
|
|
|
+ move to python singlespec
|
|
|
|
|
+ use %check and run unit tests for version >= 1500
|
|
|
|
|
+ spec-cleaner (date/license)
|
|
|
|
|
- update upstream release 1.9.5.1
|
|
|
|
|
* fix for issue #42 compilation error with microsoft visual studio
|
|
|
|
|
+ 1.9.5
|
|
|
|
|
* update proj4 source to latest github master commit 953cc00f
|
|
|
|
|
* port of basemap fix for input arrays in fortran order
|
|
|
|
|
* restore inverse Hammer patch that was lost when proj4 source
|
|
|
|
|
code was updated.
|
|
|
|
|
|
2015-10-23 18:53:58 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Oct 23 17:11:32 UTC 2015 - bruno@ioda-net.ch
|
|
|
|
|
|
|
|
|
|
- Packaging : merged package to python-pyproj src in App:Geo
|
|
|
|
|
|
2015-10-22 07:44:52 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Oct 21 15:03:01 UTC 2015 - bruno@ioda-net.ch
|
|
|
|
|
|
|
|
|
|
- update upstream release 1.9.4
|
|
|
|
|
+ 1.9.4 (git tag v1.9.4rel)
|
|
|
|
|
* migrate to github from googlecode.
|
|
|
|
|
* update proj4 source code from svn r2595 (version 4.9.0RC2).
|
|
|
|
|
* include runtime_library_dirs in setup-proj.py.
|
|
|
|
|
* added to_latlong method (issue 51).
|
|
|
|
|
* fix back azimuth when lon1 and lon2 are identical.
|
|
|
|
|
+ 1.9.3 (svn revision 327)
|
|
|
|
|
* Geod now uses C code adapted from geographiclib now included
|
|
|
|
|
in proj4 source, instead of pure python code directly from
|
|
|
|
|
geographiclib.
|
|
|
|
|
* make radians=True work with Geod.npts (issue 47).
|
|
|
|
|
* allow PROJ_DIR env var to control location of proj data
|
|
|
|
|
(issue 40).
|
|
|
|
|
+ 1.9.2 (svn revision 301)
|
|
|
|
|
* updated proj4 src to 4.8.0 - includes two new map
|
|
|
|
|
projections (natearth and isea).
|
|
|
|
|
+ 1.9.1 (svn revision 285)
|
|
|
|
|
* restore compatibility with python 2.4/2.5, which was broken
|
|
|
|
|
by the addition of the geographiclib geodesic
|
|
|
|
|
module (issue 36).
|
|
|
|
|
|
|
|
|
|
- packaging
|
|
|
|
|
+ create equivalent python3 package
|
|
|
|
|
+ cleanup spec format
|
|
|
|
|
|
2012-04-18 11:19:12 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sat Feb 11 22:22:02 UTC 2012 - ocefpaf@gmail.com
|
|
|
|
|
|
|
|
|
|
- first openSuse release 1.9.0
|
|
|
|
|
|