Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-pyproj-3.7.1-1.1 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: python311-pyproj Distribution: openSUSE Tumbleweed
Version: 3.7.1 Vendor: openSUSE
Release: 1.1 Build date: Sun Feb 16 12:21:59 2025
Group: Development/Languages/Python Build host: reproducible
Size: 2232030 Source RPM: python-pyproj-3.7.1-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pyproj4/pyproj
Summary: Python interface to PROJ library
Performs cartographic transformations and geodetic computations.

The Proj class can convert from geographic (longitude,latitude) to native map
projection (x,y) coordinates and vice versa, or from one map projection
coordinate system directly to another.

The Geod class can perform forward and inverse geodetic, or Great Circle,
computations. The forward computation involves determining latitude, longitude
and back azimuth of a terminus point given the latitude and longitude of an
initial point, plus azimuth and distance. The inverse computation involves
determining the forward and back azimuths and distance given the latitudes and
longitudes of an initial and terminus point.

Input coordinates can be given as python arrays, lists/tuples, scalars or
numpy/Numeric/numarray arrays. Optimized for objects that support the Python
buffer protocol (regular python and numpy array objects).

This project has a git repository https://github.com/pyproj4/pyproj
where you may access the most up-to-date source.

Provides

Requires

License

SUSE-Public-Domain AND X11

Changelog

* Sun Feb 16 2025 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.7.1
    * WHL: Wheels contain PROJ 9.5.1 by @snowman2 in #1477
    * WHL: MacOS minimum deployment target moved to 13 by @snowman2
      in #1475
    * WHL: Add wheels for musllinux by @necabo in #1461
    * MNT: Remove use of utcnow() and change to naive datetimes
      instead. by @greglucas in #1450
    * MNT: Cython 3.1+ fixes by @greglucas in #1452
    * TST: remove checking is python >= 3.4 by @kloczek in #1446
    * TST: Add assert statements at the end of tests by @tqa236
      in #1453
    * LNT: Setup ruff by @tqa236 in #1455
    * LNT: Disallow type error without code by @tqa236 in #1456
* Sat Nov 23 2024 Ben Greiner <code@bnavigator.de>
  - Update to 3.7.0
    [#]# Dependencies:
    * DEP: Minimum PROJ version 9.2 by @snowman2 in #1394
    [#]# Enhancements:
    * PERF: drop GIL during long-running proj database calls by
      @tpwrules in #1354
    * PERF: thread local context by @snowman2 in #1419
    * ENH: Add is_deprecated and get_non_deprecated() to CRS by
      @jjimenezshaw in #1383
    * ENH: Add runtime & compiled PROJ versions by @snowman2 in #1427
    [#]# Bug fixes:
    * BUG: Handle changes to HotineObliqueMercatorBConversion by
      @snowman2 in #1430
    * BUG: Support azimuthal_equidistant coordinate operation to CF
      by @snowman2 in #1380
  - Drop v3.6.1-BUG-Support-azimuthal_equidistant-coordinate-operati.patch
  - Drop v3.6.1-test-datum-ensemble-allowing-new-members.patch
* Sat Jul 20 2024 Libor Pechacek <lpechacek@gmx.com>
  - Fix test/crs/test_crs.py::test_datum__from_epsg failure
    (upstream #1403)
  - Add upstream patch:
    * v3.6.1-test-datum-ensemble-allowing-new-members.patch
* Wed May 08 2024 Libor Pechacek <lpechacek@gmx.com>
  - Fix test/crs/test_crs_cf.py::test_azimuthal_equidistant failure
    (upstream #1384)
  - Add upstream patch:
    * v3.6.1-BUG-Support-azimuthal_equidistant-coordinate-operati.patch
* Thu Mar 14 2024 Steve Kowalik <steven.kowalik@suse.com>
  - Unrestrict Cython BuildRequires, Cython 3 is supported upstream.
  - Switch to autosetup macro.
* Sat Mar 02 2024 Ben Greiner <code@bnavigator.de>
  - Skip testing xarray with python39: python39-xarray got removed
    early
* Sun Sep 24 2023 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.6.1
    * WHL: Update to PROJ 9.3 by @snowman2 in #1334
    * DEP: Add Python 3.12 support by @snowman2 in #1341
    * BUG: Cython 3 compatibility fixes by @snowman2 in #1322
    * BUG: Remove pkg_resources from setup.py by @snowman2 in #1314
    * DOC: Fixed typos by @djm93dev in #1305 & #1306
    * DOC: Fix logo view on Pypi by @cyschneck in #1308
    * DOC: Spelling permimeter -> perimeter by @zanejgr in #1310
* Tue Aug 29 2023 Ben Greiner <code@bnavigator.de>
  - Limit to Cython <3 gh#pyproj4/pyproj#1321
  - Use PEP517 macros instead of deprecated setup.py
  - 15.X: give it a chance with the SLE15 python module pythons
    (would need more dependencies for it to build)
* Tue Jun 13 2023 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.6.0
    * WHL: Wheels contain PROJ 9.2.1 by @snowman2 in #1291
    * DEP: Minimum supported Python version 3.9 by @snowman2
      in #1245
    * ENH: Add CRS.to_2d() by @rhugonnet in #1267
    * ENH: Added allow_superseded kwargs to TransformerGroup by
      @dmahr1 in #1269
    * ENH: Added parameter output_axis_rule to CRS.to_wkt by
      @jjimenezshaw in #1287
    * BUG: fix Geod.npts NaN handling by @snowman2 in #1288
    * MNT: Use pyproject.toml for project metadata by @snowman2
      in #1275
* Tue Mar 28 2023 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.5.0
    * WHL: PROJ 9.2 in wheels in #1243
    * DEP: Minimum PROJ version 9.0 by @snowman2 in #1244
    * ENH: Add inplace kwarg to Geod.fwd and Geod.inv by @greglucas
      in #1201
    * ENH: Add return_back_azimuth kwarg to fwd, inv,
      fwd_intermediate, inv_intermediate by @idanmiara in #1165
    * ENH: Added only_best kwarg to Transformer.from_crs by
      @snowman2 in #1236
    * PERF: Optimize point transformations by @greglucas &
      @snowman2 in #1204, #1209, #1205
    * PERF: Optimize for single point in Geod fwd/inv functions by
      @greglucas in #1206
    * REF: Raise error when CRS.to_wkt, CRS.to_json, or
      CRS.to_proj4 returns None by @snowman2 in #1218
    * CLN: Remove AzumuthalEquidistantConversion &
      LambertAzumuthalEqualAreaConversion by @snowman2 in #1220
    * BUG: Fix Derived Projected CRS support by @snowman2 in #1222
    * BUG: Add horizontal_datum_name for geographic CRS in
      CRS.to_cf by @snowman2 in #1255
  - Drop upstream patch:
    * 0001-TST-Update-test_transform_bounds__ignore_inf-for-PRO.patch
    * 0002-TST-Update-transformer-test_repr__conditional-1241.patch
* Tue Mar 21 2023 Libor Pechacek <lpechacek@gmx.com>
  - Fix failing tests after Proj update to 9.2.0 (upstream #1224, #1241)
  - Add upstream patch:
    * 0001-TST-Update-test_transform_bounds__ignore_inf-for-PRO.patch
    * 0002-TST-Update-transformer-test_repr__conditional-1241.patch
* Tue Mar 21 2023 John Vandenberg <jayvdb@gmail.com>
  - Skip two tests to support latest PROJ 9.2
* Sun Mar 19 2023 Bruno Friedmann <bruno@ioda-net.ch>
  - Disable python38 support due to new xarray version.
* Thu Dec 15 2022 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.4.1
    * WHL: Add win32 to build_wheels matrix by @molinav in #1169
    * BUG: Changed so that the setup.cfg depends on the version
      code in the init.py by @Scoppio in #1156
    * REF: Use upper case EPSG code when creating CRS by @snowman2
      in #1162
    * BUG: Fix CRS.to_cf for Pole rotation GRIB convention by
      @snowman2 in #1167
    * BUG: Fix memory leak in CRS.list_authority by @skogler in
      [#1178]
    * BUG: Fix Transform options array length by @shadchin in #1187
    * DOC: fix a few typos by @ocefpaf in #1153
* Fri Sep 16 2022 John Vandenberg <jayvdb@gmail.com>
  - Add mandatory runtime dep python-certifi, and remove not
    required dependency python-numpy
  - Remove BD python-testsuite, and reduce tests skipped
* Sun Sep 11 2022 Libor Pechacek <lpechacek@gmx.com>
  - Update to 3.4.0
    * DEP: Add python 3.11 support by @snowman2 in #1121
    * DEP: Minimum PROJ version 8.2 by @snowman2 in #1122
    * DEP: Update wheels with PROJ 9.1.0 by @snowman2 in #1132
    * ENH: Added authority, accuracy, and allow_ballpark kwargs to
      TransformerGroup by @snowman2 in #1076
    * ENH: Added force_over kwarg to Transformer.from_crs by
      @snowman2 in #1123
    * ENH: Added Transformer.get_last_used_operation by @snowman2
      in #1124
    * BUG: Fix transformer list for 3D transformations in
      TransformerGroup by @snowman2 in #1075
    * BUG: Mercator A defined only for lat_0 = 0 by @kdpenner in
      [#1095]
    * BUG: Add support for PROJ_DATA environment variable by
      @snowman2 in #1099
    * BUG: Ensure numpy masked arrays stay masked after projection
      by @paultcochrane in #1103
    * BLD: Don't specify runtime_library_dirs on Cygwin by @DWesl
      in #1120
    * BUG: Fix finding PROJ version with PROJ_LIB and PROJ 9.1+ by
      @snowman2 in #1128
    * CLN: Remove deprecated 'skip_equivalent' kwarg from
      transformers and 'errcheck' kwarg from CRS.from_cf by
      @snowman2 in #1077
    * REF: use regex to process PROJ strings in CRS.to_dict() by
      @snowman2 in #1086
    * DOC: Fix typo in installation docs by @paultcochrane in #1101
    * DOC: Fix issues in transformation grids docs by
      @paultcochrane in #1104
* Fri May 06 2022 Libor Pechacek <lpechacek@suse.com>
  - Update to 3.3.1
    * DOC: minor fix to crs doc-strings by @bjlittle in #1004
    * BUG: Correct type annotation for AreaofUse.bounds by
      @Kirill888 in #1013
    * BUG: crs.py: remove @AbstractMethod decorator by @hemberger
      in #1018
    * BUG: Reorder deps in show_versions for setuptools issue by
      @snowman2 in #1019
    * BUG: get_data_dir support for conda Windows enviroments by
      @snowman2 in #1030
    * ENH: warn when export of CRS returns None by @martinfleis
      in #1037
    * BUG: Complete database stub file with query_utm_crs_info()
      signature by @orontee in #1047
    * ENH: Added support for int-like strings and numpy dtypes by
      @iboates in #1049
    * BUG: Warn when CRS cannot be converted to PROJ or PROJ JSON
      by @snowman2 in #1054
    * ENH: Added support to pickle Transformer by @snowman2
      in #1060

Files

/etc/alternatives/pyproj
/usr/bin/pyproj
/usr/bin/pyproj-3.11
/usr/lib64/python3.11/site-packages/pyproj
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/INSTALLER
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/LICENSE
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/LICENSE_proj
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/METADATA
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/RECORD
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/REQUESTED
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/WHEEL
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/entry_points.txt
/usr/lib64/python3.11/site-packages/pyproj-3.7.1.dist-info/top_level.txt
/usr/lib64/python3.11/site-packages/pyproj/__init__.py
/usr/lib64/python3.11/site-packages/pyproj/__main__.py
/usr/lib64/python3.11/site-packages/pyproj/__pycache__
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/__main__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/_show_versions.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/_show_versions.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/aoi.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/aoi.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/datadir.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/datadir.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/enums.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/enums.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/exceptions.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/exceptions.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/geod.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/geod.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/network.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/network.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/proj.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/proj.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/sync.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/sync.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/transformer.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/transformer.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/__pycache__/utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/_compat.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_compat.pxd
/usr/lib64/python3.11/site-packages/pyproj/_compat.pyi
/usr/lib64/python3.11/site-packages/pyproj/_compat.pyx
/usr/lib64/python3.11/site-packages/pyproj/_context.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_context.pxd
/usr/lib64/python3.11/site-packages/pyproj/_context.pyi
/usr/lib64/python3.11/site-packages/pyproj/_context.pyx
/usr/lib64/python3.11/site-packages/pyproj/_crs.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_crs.pxd
/usr/lib64/python3.11/site-packages/pyproj/_crs.pyi
/usr/lib64/python3.11/site-packages/pyproj/_crs.pyx
/usr/lib64/python3.11/site-packages/pyproj/_geod.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_geod.pxd
/usr/lib64/python3.11/site-packages/pyproj/_geod.pyi
/usr/lib64/python3.11/site-packages/pyproj/_geod.pyx
/usr/lib64/python3.11/site-packages/pyproj/_network.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_network.pyi
/usr/lib64/python3.11/site-packages/pyproj/_network.pyx
/usr/lib64/python3.11/site-packages/pyproj/_show_versions.py
/usr/lib64/python3.11/site-packages/pyproj/_sync.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_sync.pyi
/usr/lib64/python3.11/site-packages/pyproj/_sync.pyx
/usr/lib64/python3.11/site-packages/pyproj/_transformer.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_transformer.pxd
/usr/lib64/python3.11/site-packages/pyproj/_transformer.pyi
/usr/lib64/python3.11/site-packages/pyproj/_transformer.pyx
/usr/lib64/python3.11/site-packages/pyproj/_version.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/_version.pyi
/usr/lib64/python3.11/site-packages/pyproj/_version.pyx
/usr/lib64/python3.11/site-packages/pyproj/aoi.py
/usr/lib64/python3.11/site-packages/pyproj/base.pxi
/usr/lib64/python3.11/site-packages/pyproj/crs
/usr/lib64/python3.11/site-packages/pyproj/crs/__init__.py
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/_cf1x8.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/_cf1x8.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/coordinate_operation.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/coordinate_operation.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/coordinate_system.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/coordinate_system.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/crs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/crs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/datum.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/datum.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/enums.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/__pycache__/enums.cpython-311.pyc
/usr/lib64/python3.11/site-packages/pyproj/crs/_cf1x8.py
/usr/lib64/python3.11/site-packages/pyproj/crs/coordinate_operation.py
/usr/lib64/python3.11/site-packages/pyproj/crs/coordinate_system.py
/usr/lib64/python3.11/site-packages/pyproj/crs/crs.py
/usr/lib64/python3.11/site-packages/pyproj/crs/datum.py
/usr/lib64/python3.11/site-packages/pyproj/crs/enums.py
/usr/lib64/python3.11/site-packages/pyproj/database.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/database.pyi
/usr/lib64/python3.11/site-packages/pyproj/database.pyx
/usr/lib64/python3.11/site-packages/pyproj/datadir.py
/usr/lib64/python3.11/site-packages/pyproj/enums.py
/usr/lib64/python3.11/site-packages/pyproj/exceptions.py
/usr/lib64/python3.11/site-packages/pyproj/geod.py
/usr/lib64/python3.11/site-packages/pyproj/list.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/pyproj/list.pyi
/usr/lib64/python3.11/site-packages/pyproj/list.pyx
/usr/lib64/python3.11/site-packages/pyproj/network.py
/usr/lib64/python3.11/site-packages/pyproj/proj.pxi
/usr/lib64/python3.11/site-packages/pyproj/proj.py
/usr/lib64/python3.11/site-packages/pyproj/py.typed
/usr/lib64/python3.11/site-packages/pyproj/sync.py
/usr/lib64/python3.11/site-packages/pyproj/transformer.py
/usr/lib64/python3.11/site-packages/pyproj/utils.py
/usr/share/doc/packages/python311-pyproj
/usr/share/doc/packages/python311-pyproj/README.md
/usr/share/licenses/python311-pyproj
/usr/share/licenses/python311-pyproj/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Feb 21 01:42:18 2025