Fiona


NameFiona JSON
Version 1.9.4.post1 PyPI version JSON
download
home_page
SummaryFiona reads and writes spatial data files
upload_time2023-05-23 23:17:07
maintainerFiona contributors
docs_urlNone
authorSean Gillies
requires_python>=3.7
licenseBSD 3-Clause
keywords gis vector feature data
VCS
bugtrack_url
requirements attrs click click-plugins cligj importlib-metadata munch certifi
Travis-CI No Travis.
coveralls test coverage
            =====
Fiona
=====

.. image:: https://github.com/Toblerity/Fiona/workflows/Tests/badge.svg?branch=maint-1.9
   :target: https://github.com/Toblerity/Fiona/actions?query=branch%3Amaint-1.9

Fiona streams simple feature data to and from GIS formats like GeoPackage and
Shapefile.

Fiona can read and write real-world data using multi-layered GIS formats,
zipped and in-memory virtual file systems, from files on your hard drive or in
cloud storage. This project includes Python modules and a command line
interface (CLI).

Fiona depends on `GDAL <https://gdal.org>`__ but is different from GDAL's own
`bindings <https://gdal.org/api/python_bindings.html>`__. Fiona is designed to
be highly productive and to make it easy to write code which is easy to read.

Installation
============

Fiona has several `extension modules
<https://docs.python.org/3/extending/extending.html>`__ which link against
libgdal. This complicates installation. Binary distributions (wheels)
containing libgdal and its own dependencies are available from the Python
Package Index and can be installed using pip.

.. code-block:: console

    pip install fiona

These wheels are mainly intended to make installation easy for simple
applications, not so much for production. They are not tested for compatibility
with all other binary wheels, conda packages, or QGIS, and omit many of GDAL's
optional format drivers. If you need, for example, GML support you will need to
build and install Fiona from a source distribution. It is possible to install
Fiona from source using pip (version >= 22.3) and the `--no-binary` option. A
specific GDAL installation can be selected by setting the GDAL_CONFIG
environment variable.

.. code-block:: console

    pip install -U pip
    pip install --no-binary fiona fiona

Many users find Anaconda and conda-forge a good way to install Fiona and get
access to more optional format drivers (like GML).

Fiona 1.9 requires Python 3.7 or higher and GDAL 3.2 or higher.

Python Usage
============

Features are read from and written to file-like ``Collection`` objects returned
from the ``fiona.open()`` function. Features are data classes modeled on the
GeoJSON format. They don't have any spatial methods of their own, so if you
want to transform them you will need Shapely or something like it. Here is an
example of using Fiona to read some features from one data file, change their
geometry attributes using Shapely, and write them to a new data file.

.. code-block:: python

    import fiona
    from fiona import Feature, Geometry
    from shapely.geometry import mapping, shape

    # Open a file for reading. We'll call this the source.
    with fiona.open(
        "zip+https://github.com/Toblerity/Fiona/files/11151652/coutwildrnp.zip"
    ) as src:

        # The file we'll write to must be initialized with a coordinate
        # system, a format driver name, and a record schema. We can get
        # initial values from the open source's profile property and then
        # modify them as we need.
        profile = src.profile
        profile["schema"]["geometry"] = "Point"
        profile["driver"] = "GPKG"

        # Open an output file, using the same format driver and coordinate
        # reference system as the source. The profile mapping fills in the
        # keyword parameters of fiona.open.
        with fiona.open("centroids.gpkg", "w", **profile) as dst:

            # Process only the feature records intersecting a box.
            for feat in src.filter(bbox=(-107.0, 37.0, -105.0, 39.0)):

                # Get the feature's centroid.
                centroid_shp = shape(feat.geometry).centroid
                new_geom = Geometry.from_dict(centroid_shp)

                # Write the feature out.
                dst.write(
                    Feature(geometry=new_geom, properties=f.properties)
                )

        # The destination's contents are flushed to disk and the file is
        # closed when its with block ends. This effectively
        # executes ``dst.flush(); dst.close()``.

CLI Usage
=========

Fiona's command line interface, named "fio", is documented at `docs/cli.rst
<https://github.com/Toblerity/Fiona/blob/master/docs/cli.rst>`__. The CLI has a
number of different commands. Its ``fio cat`` command streams GeoJSON features
from any dataset.

.. code-block:: console

    $ fio cat --compact tests/data/coutwildrnp.shp | jq -c '.'
    {"geometry":{"coordinates":[[[-111.73527526855469,41.995094299316406],...]]}}
    ...

Documentation
=============

For more details about this project, please see:

* Fiona `home page <https://github.com/Toblerity/Fiona>`__
* `Docs and manual <https://fiona.readthedocs.io/>`__
* `Examples <https://github.com/Toblerity/Fiona/tree/master/examples>`__
* Main `user discussion group <https://fiona.groups.io/g/main>`__
* `Developers discussion group <https://fiona.groups.io/g/dev>`__

Changes
=======

All issue numbers are relative to https://github.com/Toblerity/Fiona/issues.

1.9.4.post1 (2023-05-23)
------------------------

Extraneous files were unintentionally packaged in the 1.9.4 wheels. This post1
release excludes them so that wheel contents are as in version 1.9.3.

1.9.4 (2023-05-16)
------------------

- The performance of Feature.from_dict() has been improved (#1267).
- Several sources of meaningless log messages from fiona._geometry about NULL
  geometries are avoided (#1264).
- The Parquet driver has been added to the list of supported drivers and will
  be available if your system's GDAL library links libarrow. Note that fiona
  wheels on PyPI do not include libarrow as it is rather large.
- Ensure that fiona._vendor modules are found and included.
- Bytes type feature properties are now hex encoded when serializing to GeoJSON
  (#1263).
- Docstrings for listdir and listlayers have been clarified and harmonized.
- Nose style test cases have been converted to unittest.TestCase (#1256).
- The munch package used by fio-filter and fio-calc is now vendored and patched
  to remove usage of the deprecated pkg_resources module (#1255).

1.9.3 (2023-04-10)
------------------

- Rasterio CRS objects are compatible with the Collection constructor and are
  now accepted (#1248).
- Enable append mode for fio-load (#1237).
- Reading a GeoJSON with an empty array property can result in a segmentation
  fault since version 1.9.0. This has been fixed (#1228).

1.9.2 (2023-03-20)
------------------

- Get command entry points using importlib.metadata (#1220).
- Instead of warning, transform_geom() raises an exception when some points
  can't be reprojected unless the caller opts in to partial reprojection. This
  restores the behavior of version 1.8.22.
- Add support for open options to all CLI commands that call fiona.open
  (#1215).
- Fix a memory leak that can occur when iterating over a dataset using strides
  (#1205).
- ZipMemoryFile now supports zipped GDB data (#1203).

1.9.1 (2023-02-09)
------------------

- Log a warning message when identically named fields are encountered (#1201).
- Avoid dependence on listdir order in tests (#1193).
- Prevent empty geometries arrays from appearing in __geo_interface__ (#1197).
- setuptools added to pyproject.toml. Its pkg_resources module is used by the
  CLI (#1191).

1.9.0 (2023-01-30)
------------------

- CITATION.txt has been replaced by a new CITATION.cff file and the credits
  have been updated.
- In setup.py the distutils (deprecated) logger is no longer used.

1.9b2 (2023-01-22)
------------------

- Add Feature.__geo_interface__ property (#1181).
- Invalid creation options are filtered and ignored (#1180).
- The readme doc has been shortened and freshened up, with a modern example for
  version 1.9.0 (#1174).
- The Geometry class now provides and looks for __geo_interface__ (#1174).
- The top level fiona module now exports Feature, Geometry, and Properties
  (#1174).
- Functions that take Feature or Geometry objects will continue to take dicts
  or objects that provide __geo_interface__ (#1177). This reverses the
  deprecation introduced in 1.9a2.
- Python ignores SIGPIPE by default. By never catching BrokenPipeError via
  `except Exception` when, for example, piping the output of rio-shapes to
  the Unix head program, we avoid getting an unhandled BrokenPipeError message
  when the interpreter shuts down (#2689).

1.9b1 (2022-12-13)
------------------

New features:

* Add listdir and listlayers method to io.MemoryFile (resolving #754).
* Add support for TIN and triangle geometries (#1163).
* Add an allow_unsupported_drivers option to fiona.open() (#1126).
* Added support for the OGR StringList field type (#1141).

Changes and bug fixes:

* Missing and unused imports have been added or removed.
* Make sure that errors aren't lost when a collection can't be saved properly
  (#1169).
* Ensure that ZipMemoryFile have the proper GDAL name after creation so that we
  can use listdir() (#1092).
* The fiona._loading module, which supports DLL loading on Windows,
  has been moved into __init__.py and is no longer used anywhere else (#1168).
* Move project metadata to pyproject.toml (#1165).
* Update drvsupport.py to reflect new format capabilities in GDAL 3.6.0
  (#1122).
* Remove debug logging from env and _env modules.

1.9a3 (2022-10-17)
------------------

Packaging:

* Builds now require Cython >= 0.29.29 because of
* https://github.com/cython/cython/issues/4609 (see #1143).
* PyPI wheels now include GDAL 3.5.2, PROJ 9.0.1, and GEOS 3.11.0.
* PyPI wheels are now available for Python 3.11.

1.9a2 (2022-06-10)
------------------

Deprecations:

- Fiona's API methods will accept feature and geometry dicts in 1.9.0, but this
  usage is deprecated. Instances of Feature and Geometry will be required in
  2.0.
- The precision keyword argument of fiona.transform.transform_geom is
  deprecated and will be removed in version 2.0.
- Deprecated usage has been eliminated in the project. Fiona's tests pass when
  run with a -Werror::DeprecationWarning filter.

Changes:

- Fiona's FionaDeprecationWarning now sub-classes DeprecationWarning.
- Some test modules have beeen re-formatted using black.

New features:

- Fiona Collections now carry a context exit stack into which we can push fiona
  Envs and MemoryFiles (#1059).
- Fiona has a new CRS class, like rasterio's, which is compatible with the CRS
  dicts of previous versions (#714).

1.9a1 (2022-05-19)
------------------

Deprecations:

- The fiona.drivers() function has been deprecated and will be removed in
  version 2.0. It should be replaced by fiona.Env().
- The new fiona.meta module will be renamed to fiona.drivers in version 2.0.

Packaging:

- Source distributions contain no C source files and require Cython to create
  them from .pyx files (#1096).

Changes:

- Shims for various versions of GDAL have been removed and are replaced by
  Cython compilation conditions (#1093).
- Use of CURL_CA_BUNDLE environment variable is replaced by a more specific
  GDAL/PROJ_CURL_CA_BUNDLE (#1095).
- Fiona's feature accessors now return instances of fiona.model.Feature instead
  of Python dicts (#787). The Feature class is compatible with code that
  expects GeoJSON-like dicts but also provides id, geometry, and properties
  attributes. The last two of these are instances of fiona.model.Geometry and
  fiona.model.Properties.
- GDAL 3.1.0 is the minimum GDAL version.
- Drop Python 2, and establish Python 3.7 as the minimum version (#1079).
- Remove six and reduce footprint of fiona.compat (#985).

New features:

- The appropriate format driver can be detected from filename in write mode (#948).
- Driver metadata including dataset open and dataset and layer creations
  options are now exposed through methods of the fiona.meta module (#950).
- CRS WKT format support (#979).
- Add 'where' SQL clause to set attribute filter (#961, #1097).

Bug fixes:

- Env and Session classes have been updated for parity with rasterio and to
  resolve a credential refresh bug (#1055).

1.8.21 (2022-02-07)
-------------------

Changes:

- Driver mode support tests have been made more general and less susceptible to
  driver quirks involving feature fields and coordinate values (#1060).
- OSError is raised on attempts to open a dataset in a Python file object in
  "a" mode (see #1027).
- Upgrade attrs, cython, etc to open up Python 3.10 support (#1049).

Bug fixes:

- Allow FieldSkipLogFilter to handle exception messages as well as strings
  (reported in #1035).
- Clean up VSI files left by MemoryFileBase, resolving #1041.
- Hard-coded "utf-8" collection encoding added in #423 has been removed
  (#1057).

1.8.20 (2021-05-31)
-------------------

Packaging:

- Wheels include GDAL 3.3.0 and GEOS 3.9.1.

Bug fixes:

- Allow use with click 8 and higher (#1015).

1.8.19 (2021-04-07)
-------------------

Packaging:

- Wheels include GDAL 3.2.1 and PROJ 7.2.1.

Bug fixes:

- In fiona/env.py the GDAL data path is now configured using set_gdal_config
  instead by setting the GDAL_DATA environment variable (#1007).
- Spurious iterator reset warnings have been eliminatged (#987).

1.8.18 (2020-11-17)
-------------------

- The precision option of transform has been fixed for the case of
  GeometryCollections (#971, #972).
- Added missing --co (creation) option to fio-load (#390).
- If the certifi package can be imported, its certificate store location will
  be passed to GDAL during import of fiona._env unless CURL_CA_BUNDLE is
  already set.
- Warn when feature fields named "" are found (#955).

1.8.17 (2020-09-09)
-------------------

- To fix issue #952 the fio-cat command no longer cuts feature geometries at
  the anti-meridian by default. A --cut-at-antimeridian option has been added
  to allow cutting of geometries in a geographic destination coordinate
  reference system.

1.8.16 (2020-09-04)
-------------------

- More OGR errors and warnings arising in calls to GDAL C API functions are
  surfaced (#946).
- A circular import introduced in some cases in 1.8.15 has been fixed (#945).

1.8.15 (2020-09-03)
-------------------

- Change shim functions to not return tuples (#942) as a solution for the
  packaging problem reported in #941.
- Raise a Python exception when VSIFOpenL fails (#937).

1.8.14 (2020-08-31)
-------------------

- When creating a new Collection in a MemoryFile with a default (random) name
  Fiona will attempt to use a format driver-supported file extension (#934).
  When initializing a MemoryFile with bytes of data formatted for a vector
  driver that requires a certain file name or extension, the user should
  continue to pass an appropriate filename and/or extension.
- Read support for FlatGeobuf has been enabled in the drvsupport module.
- The MemoryFile implementation has been improved so that it can support multi-part
  S3 downloads (#906). This is largely a port of code from rasterio.
- Axis ordering for results of fiona.transform was wrong when CRS were passed
  in the "EPSG:dddd" form (#919). This has been fixed by (#926).
- Allow implicit access to the only dataset in a ZipMemoryFile. The path
  argument of ZipMemoryFile.open() is now optional (#928).
- Improve support for datetime types: support milliseconds (#744), timezones (#914)
  and improve warnings if type is not supported by driver (#572).
- Fix "Failed to commit transaction" TransactionError for FileGDB driver.
- Load GDAL DLL dependencies on Python 3.8+ / Windows with add_dll_directory() (#851).
- Do not require optional properties (#848).
- Ensure that slice does not overflow available data (#884).
- Resolve issue when "ERROR 4: Unable to open EPSG support file gcs.csv." is raised on
  importing fiona (#897).
- Resolve issue resulting in possible mixed up fields names (affecting only DXF, GPX,
  GPSTrackMacker and DGN driver) (#916).
- Ensure crs_wkt is passed when writing to MemoryFile (#907).


1.8.13.post1 (2020-02-21)
-------------------------

- This release is being made to improve binary wheel compatibility with shapely
  1.7.0. There have been no changes to the fiona package code since 1.8.13.

1.8.13 (2019-12-05)
-------------------

- The Python version specs for argparse and ordereddict in 1.8.12 were wrong
  and have been corrected (#843).

1.8.12 (2019-12-04)
-------------------

- Specify Python versions for argparse, enum34, and ordereddict requirements
  (#842).

1.8.11 (2019-11-07)
-------------------

- Fix an access violation on Windows (#826).

1.8.10 (2019-11-07)
-------------------

Deprecations:

- Use of vfs keyword argument with open or listlayers has been previously noted
  as deprecated, but now triggers a deprecation warning.

Bug fixes:

- fiona.open() can now create new datasets using CRS URNs (#823).
- listlayers() now accepts file and Path objects, like open() (#825).
- Use new set_proj_search_path() function to set the PROJ data search path. For
  GDAL versions before 3.0 this sets the PROJ_LIB environment variable. For
  GDAL version 3.0 this calls OSRSetPROJSearchPaths(), which overrides
  PROJ_LIB.
- Remove old and unused _drivers extension module.
- Check for header.dxf file instead of pcs.csv when looking for installed GDAL
  data. The latter is gone with GDAL 3.0 but the former remains (#818).

1.8.9.post2 (2019-10-22)
------------------------

- The 1.8.9.post1 release introduced a bug affecting builds of the package from
  a source distribution using GDAL 2.x. This bug has been fixed in commit
  960568d.

1.8.9.post1 (2019-10-22)
------------------------

- A change has been made to the package setup script so that the shim module
  for GDAL 3 is used when building the package from a source distribution.
  There are no other changes to the package.

1.8.9 (2019-10-21)
------------------

- A shim module and support for GDAL 3.0 has been added. The package can now be
  built and used with GDAL 3.0 and PROJ 6.1 or 6.2. Note that the 1.8.9 wheels
  we will upload to PyPI will contain GDAL 2.4.2 and PROJ 4.9.3 as in the 1.8.8
  wheels.

1.8.8 (2019-09-25)
------------------

- The schema of geopackage files with a geometry type code of 3000 could not be
  reported using Fiona 1.8.7. This bug is fixed.

1.8.7 (2019-09-24)
------------------

Bug fixes:

- Regression in handling of polygons with M values noted under version 1.8.5
  below was in fact not fixed then (see new report #789), but is fixed in
  version 1.8.7.
- Windows filenames containing "!" are now parsed correctly, fixing issue #742.

Upcoming changes:

- In version 1.9.0, the objects yielded when a Collection is iterated will be
  mutable mappings but will no longer be instances of Python's dict. Version
  1.9 is intended to be backwards compatible with 1.8 except where user code
  tests `isinstance(feature, dict)`. In version 2.0 the new Feature, Geometry,
  and Properties classes will become immutable mappings. See
  https://github.com/Toblerity/fiona-rfc/blob/master/rfc/0001-fiona-2-0-changes.md
  for more discussion of the upcoming changes for version 2.0.

1.8.6 (2019-03-18)
------------------

- The advertisement for JSON driver enablement in 1.8.5 was false (#176), but
  in this release they are ready for use.

1.8.5 (2019-03-15)
------------------

- GDAL seems to work best if GDAL_DATA is set as early as possible. Ideally it
  is set when building the library or in the environment before importing
  Fiona, but for wheels we patch GDAL_DATA into os.environ when fiona.env
  is imported. This resolves #731.
- A combination of bugs which allowed .cpg files to be overlooked has been
  fixed (#726).
- On entering a collection context (Collection.__enter__) a new anonymous GDAL
  environment is created if needed and entered. This makes `with
  fiona.open(...) as collection:` roughly equivalent to `with fiona.open(...)
  as collection, Env():`. This helps prevent bugs when Collections are created
  and then used later or in different scopes.
- Missing GDAL support for TopoJSON, GeoJSONSeq, and ESRIJSON has been enabled
  (#721).
- A regression in handling of polygons with M values (#724) has been fixed.
- Per-feature debug logging calls in OGRFeatureBuilder methods have been
  eliminated to improve feature writing performance (#718).
- Native support for datasets in Google Cloud Storage identified by "gs"
  resource names has been added (#709).
- Support has been added for triangle, polyhedral surface, and TIN geometry
  types (#679).
- Notes about using the MemoryFile and ZipMemoryFile classes has been added to
  the manual (#674).

1.8.4 (2018-12-10)
------------------

- 3D geometries can now be transformed with a specified precision (#523).
- A bug producing a spurious DriverSupportError for Shapefiles with a "time"
  field (#692) has been fixed.
- Patching of the GDAL_DATA environment variable was accidentally left in place
  in 1.8.3 and now has been removed.

1.8.3 (2018-11-30)
------------------

- The RASTERIO_ENV config environment marker this project picked up from
  Rasterio has been renamed to FIONA_ENV (#665).
- Options --gdal-data and --proj-data have been added to the fio-env command so
  that users of Rasterio wheels can get paths to set GDAL_DATA and PROJ_LIB
  environment variables.
- The unsuccessful attempt to make GDAL and PROJ support file discovery and
  configuration automatic within collection's crs and crs_wkt properties has
  been reverted.  Users must execute such code inside a `with Env()` block or
  set the GDAL_DATA and PROJ_LIB environment variables needed by GDAL.

1.8.2 (2018-11-19)
------------------

Bug fixes:

- Raise FionaValueError when an iterator's __next__ is called and the session
  is found to be missing or inactive instead of passing a null pointer to
  OGR_L_GetNextFeature (#687).

1.8.1 (2018-11-15)
------------------

Bug fixes:

- Add checks around OSRGetAuthorityName and OSRGetAuthorityCode calls that will
  log problems with looking up these items.
- Opened data sources are now released before we raise exceptions in
  WritingSession.start (#676). This fixes an issue with locked files on
  Windows.
- We now ensure that an Env instance exists when getting the crs or crs_wkt
  properties of a Collection (#673, #690). Otherwise, required GDAL and PROJ
  data files included in Fiona wheels can not be found.
- GDAL and PROJ data search has been refactored to improve testability (#678).
- In the project's Cython code, void* pointers have been replaced with proper
  GDAL types (#672).
- Pervasive warning level log messages about ENCODING creation options (#668)
  have been eliminated.

1.8.0 (2018-10-31)
------------------

This is the final 1.8.0 release. Thanks, everyone!

Bug fixes:

- We cpdef Session.stop so that it has a C version that can be called safely
  from __dealloc__, fixing a PyPy issue (#659, #553).

1.8rc1 (2018-10-26)
-------------------

There are no changes in 1.8rc1 other than more test standardization and the
introduction of a temporary test_collection_legacy.py module to support the
build of fully tested Python 2.7 macosx wheels on Travis-CI.

1.8b2 (2018-10-23)
------------------

Bug fixes:

- The ensure_env_with_credentials decorator will no longer clobber credentials
  of the outer environment. This fixes a bug reported to the Rasterio project
  and which also existed in Fiona.
- An unused import of the packaging module and the dependency have been 
  removed (#653).
- The Env class logged to the 'rasterio' hierarchy instead of 'fiona'. This
  mistake has been corrected (#646).
- The Mapping abstract base class is imported from collections.abc when
  possible (#647).

Refactoring:

- Standardization of the tests on pytest functions and fixtures continues and
  is nearing completion (#648, #649, #650, #651, #652).

1.8b1 (2018-10-15)
------------------

Deprecations:

- Collection slicing has been deprecated and will be prohibited in a future
  version.

Bug fixes:

- Rasterio CRS objects passed to transform module methods will be converted
  to dicts as needed (#590).
- Implicitly convert curve geometries to their linear approximations rather
  than failing (#617).
- Migrated unittest test cases in test_collection.py and test_layer.py to the
  use of the standard data_dir and path_coutwildrnp_shp fixtures (#616).
- Root logger configuration has been removed from all test scripts (#615).
- An AWS session is created for the CLI context Env only if explicitly
  requested, matching the behavior of Rasterio's CLI (#635).
- Dependency on attrs is made explicit.
- Other dependencies are pinned to known good versions in requirements files.
- Unused arguments have been removed from the Env constructor (#637).

Refactoring:

- A with_context_env decorator has been added and used to set up the GDAL
  environment for CLI commands. The command functions themselves are now
  simplified.

1.8a3 (2018-10-01)
------------------

Deprecations:

- The ``fiona.drivers()`` context manager is officially deprecated. All
  users should switch to ``fiona.Env()``, which registers format drivers and
  manages GDAL configuration in a reversible manner.

Bug fixes:

- The Collection class now filters log messages about skipped fields to
  a maximum of one warning message per field (#627).
- The boto3 module is only imported when needed (#507, #629).
- Compatibility with Click 7.0 is achieved (#633).
- Use of %r instead of %s in a debug() call prevents UnicodeDecodeErrors
  (#620).

1.8a2 (2018-07-24)
------------------

New features:

- 64-bit integers are the now the default for int type fields (#562, #564).
- 'http', 's3', 'zip+http', and 'zip+s3' URI schemes for datasets are now
  supported (#425, #426).
- We've added a ``MemoryFile`` class which supports formatted in-memory
  feature collections (#501).
- Added support for GDAL 2.x boolean field sub-type (#531).
- A new ``fio rm`` command makes it possible to cleanly remove multi-file
  datasets (#538).
- The geometry type in a feature collection is more flexible. We can now
  specify not only a single geometry type, but a sequence of permissible types,
  or "Any" to permit any geometry type (#539).
- Support for GDAL 2.2+ null fields has been added (#554).
- The new ``gdal_open_vector()`` function of our internal API provides much
  improved error handling (#557).

Bug fixes:

- The bug involving OrderedDict import on Python 2.7 has been fixed (#533).
- An ``AttributeError`` raised when the ``--bbox`` option of fio-cat is used
  with more than one input file has been fixed (#543, #544).
- Obsolete and derelict fiona.tool module has been removed.
- Revert the change in 0a2bc7c that discards Z in geometry types when a
  collection's schema is reported (#541).
- Require six version 1.7 or higher (#550).
- A regression related to "zip+s3" URIs has been fixed.
- Debian's GDAL data locations are now searched by default (#583).

1.8a1 (2017-11-06)
------------------

New features:

- Each call of ``writerecords()`` involves one or more transactions of up to
  20,000 features each. This improves performance when writing GeoPackage files
  as the previous transaction size was only 200 features (#476, #491).

Packaging:

- Fiona's Cython source files have been refactored so that there are no longer
  separate extension modules for GDAL 1.x and GDAL 2.x. Instead there is a base
  extension module based on GDAL 2.x and shim modules for installations that
  use GDAL 1.x.

1.7.11.post1 (2018-01-08)
-------------------------

- This post-release adds missing expat (and thereby GPX format) support to
  the included GDAL library (still version 2.2.2).

1.7.11 (2017-12-14)
-------------------

- The ``encoding`` keyword argument for ``fiona.open()``, which is intended
  to allow a caller to override a data source's own and possibly erroneous
  encoding, has not been working (#510, #512). The problem is that we weren't
  always setting GDAL open or config options before opening the data sources.
  This bug is resolved by a number of commits in the maint-1.7 branch and
  the fix is demonstrated in tests/test_encoding.py.
- An ``--encoding`` option has been added to fio-load to enable creation of
  encoded shapefiles with an accompanying .cpg file (#499, #517).

1.7.10.post1 (2017-10-30)
-------------------------

- A post-release has been made to fix a problem with macosx wheels uploaded
  to PyPI.

1.7.10 (2017-10-26)
-------------------

Bug fixes:

- An extraneous printed line from the ``rio cat --layers`` validator has been
  removed (#478).

Packaging:

- Official OS X and Manylinux1 wheels (on PyPI) for this release will be
  compatible with Shapely 1.6.2 and Rasterio 1.0a10 wheels.

1.7.9.post1 (2017-08-21)
------------------------

This release introduces no changes in the Fiona package. It upgrades GDAL
from 2.2.0 to 2.2.1 in wheels that we publish to the Python Package Index.

1.7.9 (2017-08-17)
------------------

Bug fixes:

- Acquire the GIL for GDAL error callback functions to prevent crashes when
  GDAL errors occur when the GIL has been released by user code.
- Sync and flush layers when closing even when the number of features is not
  precisely known (#467).

1.7.8 (2017-06-20)
------------------

Bug fixes:

- Provide all arguments needed by CPLError based exceptions (#456).

1.7.7 (2017-06-05)
------------------

Bug fixes:

- Switch logger `warn()` (deprecated) calls to `warning()`.
- Replace all relative imports and cimports in Cython modules with absolute
  imports (#450).
- Avoid setting `PROJ_LIB` to a non-existent directory (#439).

1.7.6 (2017-04-26)
------------------

Bug fixes:

- Fall back to `share/proj` for PROJ_LIB (#440).
- Replace every call to `OSRDestroySpatialReference()` with `OSRRelease()`,
  fixing the GPKG driver crasher reported in #441 (#443).
- Add a `DriverIOError` derived from `IOError` to use for driver-specific
  errors such as the GeoJSON driver's refusal to overwrite existing files.
  Also we now ensure that when this error is raised by `fiona.open()` any
  created read or write session is deleted, this eliminates spurious 
  exceptions on teardown of broken `Collection` objects (#437, #444).

1.7.5 (2017-03-20)
------------------

Bug fixes:

- Opening a data file in read (the default) mode with `fiona.open()` using the
  the `driver` or `drivers` keyword arguments (to specify certain format 
  drivers) would sometimes cause a crash on Windows due to improperly
  terminated lists of strings (#428). The fix: Fiona's buggy `string_list()`
  has been replaced by GDAL's `CSLAddString()`.

1.7.4 (2017-02-20)
------------------

Bug fixes:

- OGR's EsriJSON detection fails when certain keys aren't found in the first
  6000 bytes of data passed to `BytesCollection` (#422). A .json file extension
  is now explicitly given to the in-memory file behind `BytesCollection` when
  the `driver='GeoJSON'` keyword argument is given (#423). 

1.7.3 (2017-02-14)
------------------

Roses are red.
Tan is a pug.
Software regression's
the most embarrassing bug.

Bug fixes:

- Use __stdcall for GDAL error handling callback on Windows as in Rasterio.
- Turn on latent support for zip:// URLs in rio-cat and rio-info (#421).
- The 1.7.2 release broke support for zip files with absolute paths (#418).
  This regression has been fixed with tests to confirm.

1.7.2 (2017-01-27)
------------------

Future Deprecation:

- `Collection.__next__()` is buggy in that it can lead to duplication of 
  features when used in combination with `Collection.filter()` or
  `Collection.__iter__()`. It will be removed in Fiona 2.0. Please check for
  usage of this deprecated feature by running your tests or programs with
  `PYTHONWARNINGS="always:::fiona"` or `-W"always:::fiona"` and switch from
  `next(collection)` to `next(iter(collection))` (#301).

Bug fix:

- Zipped streams of bytes can be accessed by `BytesCollection` (#318).

1.7.1.post1 (2016-12-23)
------------------------
- New binary wheels using version 1.2.0 of sgillies/frs-wheel-builds. See
  https://github.com/sgillies/frs-wheel-builds/blob/master/CHANGES.txt.

1.7.1 (2016-11-16)
------------------

Bug Fixes:

- Prevent Fiona from stumbling over 'Z', 'M', and 'ZM' geometry types
  introduced in GDAL 2.1 (#384). Fiona 1.7.1 doesn't add explicit support for
  these types, they are coerced to geometry types 1-7 ('Point', 'LineString',
  etc.)
- Raise an `UnsupportedGeometryTypeError` when a bogus or unsupported 
  geometry type is encountered in a new collection's schema or elsewhere
  (#340).
- Enable `--precision 0` for fio-cat (#370).
- Prevent datetime exceptions from unnecessarily stopping collection iteration
  by yielding `None` (#385)
- Replace log.warn calls with log.warning calls (#379).
- Print an error message if neither gdal-config or `--gdalversion` indicate
  a GDAL C API version when running `setup.py` (#364).
- Let dict-like subclasses through CRS type checks (#367).

1.7.0post2 (2016-06-15)
-----------------------

Packaging: define extension modules for 'clean' and 'config' targets (#363).

1.7.0post1 (2016-06-15)
-----------------------

Packaging: No files are copied for the 'clean' setup target (#361, #362).

1.7.0 (2016-06-14)
------------------

The C extension modules in this library can now be built and used with either
a 1.x or 2.x release of the GDAL library. Big thanks to René Buffat for
leading this effort.

Refactoring:

- The `ogrext1.pyx` and `ogrext2.pyx` files now use separate
  C APIs defined in `ogrext1.pxd` and `ogrex2.pxd`. The other extension
  modules have been refactored so that they do not depend on either of these
  modules and use subsets of the GDAL/OGR API compatible with both GDAL 1.x and
  2.x (#359).

Packaging:

- Source distributions now contain two different sources for the
  `ogrext` extension module. The `ogrext1.c` file will be used with GDAL 1.x
  and the `ogrext2.c` file will be used with GDAL 2.x.

1.7b2 (2016-06-13)
------------------

- New feature: enhancement of the `--layer` option for fio-cat and fio-dump
  to allow separate layers of one or more multi-layer input files to be
  selected (#349).

1.7b1 (2016-06-10)
------------------

- New feature: support for GDAL version 2+ (#259).
- New feature: a new fio-calc CLI command (#273).
- New feature: `--layer` options for fio-info (#316) and fio-load (#299).
- New feature: a `--no-parse` option for fio-collect that lets a careful user
  avoid extra JSON serialization and deserialization (#306).
- Bug fix: `+wktext` is now preserved when serializing CRS from WKT to PROJ.4
  dicts (#352).
- Bug fix: a small memory leak when opening a collection has been fixed (#337).
- Bug fix: internal unicode errors now result in a log message and a 
  `UnicodeError` exception, not a `TypeError` (#356).

1.6.4 (2016-05-06)
------------------
- Raise ImportError if the active GDAL library version is >= 2.0 instead of
  failing unpredictably (#338, #341). Support for GDAL>=2.0 is coming in
  Fiona 1.7.

1.6.3.post1 (2016-03-27)
------------------------
- No changes to the library in this post-release version, but there is a
  significant change to the distributions on PyPI: to help make Fiona more
  compatible with Shapely on OS X, the GDAL shared library included in the
  macosx (only) binary wheels now statically links the GEOS library. See
  https://github.com/sgillies/frs-wheel-builds/issues/5.

1.6.3 (2015-12-22)
------------------
- Daytime has been decreasing in the Northern Hemisphere, but is now
  increasing again as it should.
- Non-UTF strings were being passed into OGR functions in some situations
  and on Windows this would sometimes crash a Python process (#303). Fiona
  now raises errors derived from UnicodeError when field names or field
  values can't be encoded.

1.6.2 (2015-09-22)
------------------
- Providing only PROJ4 representations in the dataset meta property resulted in
  loss of CRS information when using the `fiona.open(..., **src.meta) as dst`
  pattern (#265). This bug has been addressed by adding a crs_wkt item to the`
  meta property and extending the `fiona.open()` and the collection constructor
  to look for and prioritize this keyword argument.

1.6.1 (2015-08-12)
------------------
- Bug fix: Fiona now deserializes JSON-encoded string properties provided by
  the OGR GeoJSON driver (#244, #245, #246).
- Bug fix: proj4 data was not copied properly into binary distributions due to
  a typo (#254).

Special thanks to WFMU DJ Liz Berg for the awesome playlist that's fueling my
release sprint. Check it out at https://wfmu.org/playlists/shows/62083. You
can't unhear Love Coffin.

1.6.0 (2015-07-21)
------------------
- Upgrade Cython requirement to 0.22 (#214).
- New BytesCollection class (#215).
- Add GDAL's OpenFileGDB driver to registered drivers (#221).
- Implement CLI commands as plugins (#228).
- Raise click.abort instead of calling sys.exit, preventing suprising exits
  (#236).

1.5.1 (2015-03-19)
------------------
- Restore test data to sdists by fixing MANIFEST.in (#216).

1.5.0 (2015-02-02)
------------------
- Finalize GeoJSON feature sequence options (#174).
- Fix for reading of datasets that don't support feature counting (#190).
- New test dataset (#188).
- Fix for encoding error (#191).
- Remove confusing warning (#195).
- Add data files for binary wheels (#196).
- Add control over drivers enabled when reading datasets (#203).
- Use cligj for CLI options involving GeoJSON (#204).
- Fix fio-info --bounds help (#206).

1.4.8 (2014-11-02)
------------------
- Add missing crs_wkt property as in Rasterio (#182).

1.4.7 (2014-10-28)
------------------
- Fix setting of CRS from EPSG codes (#149).

1.4.6 (2014-10-21)
------------------
- Handle 3D coordinates in bounds() #178.

1.4.5 (2014-10-18)
------------------
- Add --bbox option to fio-cat (#163).
- Skip geopackage tests if run from an sdist (#167).
- Add fio-bounds and fio-distrib.
- Restore fio-dump to working order.

1.4.4 (2014-10-13)
------------------
- Fix accidental requirement on GDAL 1.11 introduced in 1.4.3 (#164).

1.4.3 (2014-10-10)
------------------
- Add support for geopackage format (#160).
- Add -f and --format aliases for --driver in CLI (#162).
- Add --version option and env command to CLI.

1.4.2 (2014-10-03)
------------------
- --dst-crs and --src-crs options for fio cat and collect (#159).

1.4.1 (2014-09-30)
------------------
- Fix encoding bug in collection's __getitem__ (#153).

1.4.0 (2014-09-22)
------------------
- Add fio cat and fio collect commands (#150).
- Return of Python 2.6 compatibility (#148).
- Improved CRS support (#149).

1.3.0 (2014-09-17)
------------------
- Add single metadata item accessors to fio inf (#142).
- Move fio to setuptools entry point (#142).
- Add fio dump and load commands (#143).
- Remove fio translate command.

1.2.0 (2014-09-02)
------------------
- Always show property width and precision in schema (#123).
- Write datetime properties of features (#125).
- Reset spatial filtering in filter() (#129).
- Accept datetime.date objects as feature properties (#130).
- Add slicing to collection iterators (#132).
- Add geometry object masks to collection iterators (#136).
- Change source layout to match Shapely and Rasterio (#138).

1.1.6 (2014-07-23)
------------------
- Implement Collection __getitem__() (#112).
- Leave GDAL finalization to the DLL's destructor (#113).
- Add Collection keys(), values(), items(), __contains__() (#114).
- CRS bug fix (#116).
- Add fio CLI program.
  
1.1.5 (2014-05-21)
------------------
- Addition of cpl_errs context manager (#108).
- Check for NULLs with '==' test instead of 'is' (#109).
- Open auxiliary files with encoding='utf-8' in setup for Python 3 (#110).

1.1.4 (2014-04-03)
------------------
- Convert 'long' in schemas to 'int' (#101).
- Carefully map Python schema to the possibly munged internal schema (#105).
- Allow writing of features with geometry: None (#71).

1.1.3 (2014-03-23)
------------------
- Always register all GDAL and OGR drivers when entering the DriverManager
  context (#80, #92).
- Skip unsupported field types with a warning (#91).
- Allow OGR config options to be passed to fiona.drivers() (#90, #93).
- Add a bounds() function (#100).
- Turn on GPX driver.

1.1.2 (2014-02-14)
------------------
- Remove collection slice left in dumpgj (#88).

1.1.1 (2014-02-02)
------------------
- Add an interactive file inspector like the one in rasterio.
- CRS to_string bug fix (#83).

1.1 (2014-01-22)
----------------
- Use a context manager to manage drivers (#78), a backwards compatible but
  big change. Fiona is now compatible with rasterio and plays better with the
  osgeo package.

1.0.3 (2014-01-21)
------------------
- Fix serialization of +init projections (#69).

1.0.2 (2013-09-09)
------------------
- Smarter, better test setup (#65, #66, #67).
- Add type='Feature' to records read from a Collection (#68).
- Skip geometry validation when using GeoJSON driver (#61).
- Dumpgj file description reports record properties as a list (as in
  dict.items()) instead of a dict.

1.0.1 (2013-08-16)
------------------
- Allow ordering of written fields and preservation of field order when
  reading (#57).

1.0 (2013-07-30)
-----------------
- Add prop_type() function.
- Allow UTF-8 encoded paths for Python 2 (#51). For Python 3, paths must
  always be str, never bytes.
- Remove encoding from collection.meta, it's a file creation option only.
- Support for linking GDAL frameworks (#54).

0.16.1 (2013-07-02)
-------------------
- Add listlayers, open, prop_width to __init__py:__all__.
- Reset reading of OGR layer whenever we ask for a collection iterator (#49).

0.16 (2013-06-24)
-----------------
- Add support for writing layers to multi-layer files.
- Add tests to reach 100% Python code coverage.

0.15 (2013-06-06)
-----------------
- Get and set numeric field widths (#42).
- Add support for multi-layer data sources (#17).
- Add support for zip and tar virtual filesystems (#45).
- Add listlayers() function.
- Add GeoJSON to list of supported formats (#47).
- Allow selection of layers by index or name.

0.14 (2013-05-04)
-----------------
- Add option to add JSON-LD in the dumpgj program.
- Compare values to six.string_types in Collection constructor.
- Add encoding to Collection.meta.
- Document dumpgj in README.

0.13 (2013-04-30)
-----------------
- Python 2/3 compatibility in a single package. Pythons 2.6, 2.7, 3.3 now supported.

0.12.1 (2013-04-16)
-------------------
- Fix messed up linking of README in sdist (#39).

0.12 (2013-04-15)
-----------------
- Fix broken installation of extension modules (#35).
- Log CPL errors at their matching Python log levels.
- Use upper case for encoding names within OGR, lower case in Python.

0.11 (2013-04-14)
-----------------
- Cythonize .pyx files (#34).
- Work with or around OGR's internal recoding of record data (#35).
- Fix bug in serialization of int/float PROJ.4 params.

0.10 (2013-03-23)
-----------------
- Add function to get the width of str type properties.
- Handle validation and schema representation of 3D geometry types (#29).
- Return {'geometry': None} in the case of a NULL geometry (#31).

0.9.1 (2013-03-07)
------------------
- Silence the logger in ogrext.so (can be overridden).
- Allow user specification of record field encoding (like 'Windows-1252' for
  Natural Earth shapefiles) to help when OGR can't detect it.

0.9 (2013-03-06)
----------------
- Accessing file metadata (crs, schema, bounds) on never inspected closed files
  returns None without exceptions.
- Add a dict of supported_drivers and their supported modes.
- Raise ValueError for unsupported drivers and modes.
- Remove asserts from ogrext.pyx.
- Add validate_record method to collections.
- Add helpful coordinate system functions to fiona.crs.
- Promote use of fiona.open over fiona.collection.
- Handle Shapefile's mix of LineString/Polygon and multis (#18).
- Allow users to specify width of shapefile text fields (#20).

0.8 (2012-02-21)
----------------
- Replaced .opened attribute with .closed (product of collection() is always
  opened). Also a __del__() which will close a Collection, but still not to be
  depended upon.
- Added writerecords method.
- Added a record buffer and better counting of records in a collection.
- Manage one iterator per collection/session.
- Added a read-only bounds property.

0.7 (2012-01-29)
----------------
- Initial timezone-naive support for date, time, and datetime fields. Don't use
  these field types if you can avoid them. RFC 3339 datetimes in a string field
  are much better.

0.6.2 (2012-01-10)
------------------
- Diagnose and set the driver property of collection in read mode.
- Fail if collection paths are not to files. Multi-collection workspaces are
  a (maybe) TODO.

0.6.1 (2012-01-06)
------------------
- Handle the case of undefined crs for disk collections.

0.6 (2012-01-05)
----------------
- Support for collection coordinate reference systems based on Proj4.
- Redirect OGR warnings and errors to the Fiona log.
- Assert that pointers returned from the ograpi functions are not NULL before
  using.

0.5 (2011-12-19)
----------------
- Support for reading and writing collections of any geometry type.
- Feature and Geometry classes replaced by mappings (dicts).
- Removal of Workspace class.

0.2 (2011-09-16)
----------------
- Rename WorldMill to Fiona.

0.1.1 (2008-12-04)
------------------
- Support for features with no geometry.


Credits
=======

Fiona is written by:

- Alan D. Snow <alansnow21@gmail.com>
- Ariel Nunez <ingenieroariel@gmail.com>
- Ariki <Ariki@users.noreply.github.com>
- Bas Couwenberg <sebastic@xs4all.nl>
- Brandon Liu <bdon@bdon.org>
- Brendan Ward <bcward@consbio.org>
- Chris Mutel <cmutel@gmail.com>
- Denis Rykov <rykovd@gmail.com>
- dimlev <dimlev@gmail.com>
- Efrén <chefren@users.noreply.github.com>
- Egor Fedorov <egor.fedorov@emlid.com>
- Elliott Sales de Andrade <quantum.analyst@gmail.com>
- Even Rouault <even.rouault@mines-paris.org>
- Ewout ter Hoeven <E.M.terHoeven@student.tudelft.nl>
- Filipe Fernandes <ocefpaf@gmail.com>
- fredj <frederic.junod@camptocamp.com>
- Géraud <galak75@users.noreply.github.com>
- Hannes Gräuler <hgraeule@uos.de>
- Jacob Wasserman <jwasserman@gmail.com>
- Jesse Crocker <jesse@gaiagps.com>
- Johan Van de Wauw <johan.vandewauw@gmail.com>
- Joris Van den Bossche <jorisvandenbossche@gmail.com>
- Joshua Arnott <josh@snorfalorpagus.net>
- Juan Luis Cano Rodríguez <Juanlu001@users.noreply.github.com>
- Kelsey Jordahl <kjordahl@enthought.com>
- Kevin Wurster <wursterk@gmail.com>
- Ludovic Delauné <ludotux@gmail.com>
- Martijn Visser <mgvisser@gmail.com>
- Matthew Perry <perrygeo@gmail.com>
- Micah Cochran <micahcochran@users.noreply.github.com>
- Michael Weisman <mweisman@gmail.com>
- Michele Citterio <michele@citterio.net>
- Mike Taves <mwtoews@gmail.com>
- Miro Hrončok <miro@hroncok.cz>
- Oliver Tonnhofer <olt@bogosoft.com>
- Patrick Young <patrick.mckendree.young@gmail.com>
- qinfeng <guo.qinfeng+github@gmail.com>
- René Buffat <buffat@gmail.com>
- Ryan Grout <rgrout@continuum.io>
- Sean Gillies <sean.gillies@gmail.com>
- Sid Kapur <sid-kap@users.noreply.github.com>
- Simon Norris <snorris@hillcrestgeo.ca>
- Stefano Costa <steko@iosa.it>
- Stephane Poss <stephposs@gmail.com>
- Tim Tröndle <tim.troendle@usys.ethz.ch>
- wilsaj <wilson.andrew.j+github@gmail.com>

The GeoPandas project (Joris Van den Bossche et al.) has been a major driver
for new features in 1.8.0.

Fiona would not be possible without the great work of Frank Warmerdam and other
GDAL/OGR developers.

Some portions of this work were supported by a grant (for Pleiades_) from the
U.S. National Endowment for the Humanities (https://www.neh.gov).

.. _Pleiades: https://pleiades.stoa.org

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "Fiona",
    "maintainer": "Fiona contributors",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "gis,vector,feature,data",
    "author": "Sean Gillies",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/3b/c0/1f49b9026e706304a5f214c0758c022cb91367b9b13d0d2cae19847d3c35/Fiona-1.9.4.post1.tar.gz",
    "platform": null,
    "description": "=====\nFiona\n=====\n\n.. image:: https://github.com/Toblerity/Fiona/workflows/Tests/badge.svg?branch=maint-1.9\n   :target: https://github.com/Toblerity/Fiona/actions?query=branch%3Amaint-1.9\n\nFiona streams simple feature data to and from GIS formats like GeoPackage and\nShapefile.\n\nFiona can read and write real-world data using multi-layered GIS formats,\nzipped and in-memory virtual file systems, from files on your hard drive or in\ncloud storage. This project includes Python modules and a command line\ninterface (CLI).\n\nFiona depends on `GDAL <https://gdal.org>`__ but is different from GDAL's own\n`bindings <https://gdal.org/api/python_bindings.html>`__. Fiona is designed to\nbe highly productive and to make it easy to write code which is easy to read.\n\nInstallation\n============\n\nFiona has several `extension modules\n<https://docs.python.org/3/extending/extending.html>`__ which link against\nlibgdal. This complicates installation. Binary distributions (wheels)\ncontaining libgdal and its own dependencies are available from the Python\nPackage Index and can be installed using pip.\n\n.. code-block:: console\n\n    pip install fiona\n\nThese wheels are mainly intended to make installation easy for simple\napplications, not so much for production. They are not tested for compatibility\nwith all other binary wheels, conda packages, or QGIS, and omit many of GDAL's\noptional format drivers. If you need, for example, GML support you will need to\nbuild and install Fiona from a source distribution. It is possible to install\nFiona from source using pip (version >= 22.3) and the `--no-binary` option. A\nspecific GDAL installation can be selected by setting the GDAL_CONFIG\nenvironment variable.\n\n.. code-block:: console\n\n    pip install -U pip\n    pip install --no-binary fiona fiona\n\nMany users find Anaconda and conda-forge a good way to install Fiona and get\naccess to more optional format drivers (like GML).\n\nFiona 1.9 requires Python 3.7 or higher and GDAL 3.2 or higher.\n\nPython Usage\n============\n\nFeatures are read from and written to file-like ``Collection`` objects returned\nfrom the ``fiona.open()`` function. Features are data classes modeled on the\nGeoJSON format. They don't have any spatial methods of their own, so if you\nwant to transform them you will need Shapely or something like it. Here is an\nexample of using Fiona to read some features from one data file, change their\ngeometry attributes using Shapely, and write them to a new data file.\n\n.. code-block:: python\n\n    import fiona\n    from fiona import Feature, Geometry\n    from shapely.geometry import mapping, shape\n\n    # Open a file for reading. We'll call this the source.\n    with fiona.open(\n        \"zip+https://github.com/Toblerity/Fiona/files/11151652/coutwildrnp.zip\"\n    ) as src:\n\n        # The file we'll write to must be initialized with a coordinate\n        # system, a format driver name, and a record schema. We can get\n        # initial values from the open source's profile property and then\n        # modify them as we need.\n        profile = src.profile\n        profile[\"schema\"][\"geometry\"] = \"Point\"\n        profile[\"driver\"] = \"GPKG\"\n\n        # Open an output file, using the same format driver and coordinate\n        # reference system as the source. The profile mapping fills in the\n        # keyword parameters of fiona.open.\n        with fiona.open(\"centroids.gpkg\", \"w\", **profile) as dst:\n\n            # Process only the feature records intersecting a box.\n            for feat in src.filter(bbox=(-107.0, 37.0, -105.0, 39.0)):\n\n                # Get the feature's centroid.\n                centroid_shp = shape(feat.geometry).centroid\n                new_geom = Geometry.from_dict(centroid_shp)\n\n                # Write the feature out.\n                dst.write(\n                    Feature(geometry=new_geom, properties=f.properties)\n                )\n\n        # The destination's contents are flushed to disk and the file is\n        # closed when its with block ends. This effectively\n        # executes ``dst.flush(); dst.close()``.\n\nCLI Usage\n=========\n\nFiona's command line interface, named \"fio\", is documented at `docs/cli.rst\n<https://github.com/Toblerity/Fiona/blob/master/docs/cli.rst>`__. The CLI has a\nnumber of different commands. Its ``fio cat`` command streams GeoJSON features\nfrom any dataset.\n\n.. code-block:: console\n\n    $ fio cat --compact tests/data/coutwildrnp.shp | jq -c '.'\n    {\"geometry\":{\"coordinates\":[[[-111.73527526855469,41.995094299316406],...]]}}\n    ...\n\nDocumentation\n=============\n\nFor more details about this project, please see:\n\n* Fiona `home page <https://github.com/Toblerity/Fiona>`__\n* `Docs and manual <https://fiona.readthedocs.io/>`__\n* `Examples <https://github.com/Toblerity/Fiona/tree/master/examples>`__\n* Main `user discussion group <https://fiona.groups.io/g/main>`__\n* `Developers discussion group <https://fiona.groups.io/g/dev>`__\n\nChanges\n=======\n\nAll issue numbers are relative to https://github.com/Toblerity/Fiona/issues.\n\n1.9.4.post1 (2023-05-23)\n------------------------\n\nExtraneous files were unintentionally packaged in the 1.9.4 wheels. This post1\nrelease excludes them so that wheel contents are as in version 1.9.3.\n\n1.9.4 (2023-05-16)\n------------------\n\n- The performance of Feature.from_dict() has been improved (#1267).\n- Several sources of meaningless log messages from fiona._geometry about NULL\n  geometries are avoided (#1264).\n- The Parquet driver has been added to the list of supported drivers and will\n  be available if your system's GDAL library links libarrow. Note that fiona\n  wheels on PyPI do not include libarrow as it is rather large.\n- Ensure that fiona._vendor modules are found and included.\n- Bytes type feature properties are now hex encoded when serializing to GeoJSON\n  (#1263).\n- Docstrings for listdir and listlayers have been clarified and harmonized.\n- Nose style test cases have been converted to unittest.TestCase (#1256).\n- The munch package used by fio-filter and fio-calc is now vendored and patched\n  to remove usage of the deprecated pkg_resources module (#1255).\n\n1.9.3 (2023-04-10)\n------------------\n\n- Rasterio CRS objects are compatible with the Collection constructor and are\n  now accepted (#1248).\n- Enable append mode for fio-load (#1237).\n- Reading a GeoJSON with an empty array property can result in a segmentation\n  fault since version 1.9.0. This has been fixed (#1228).\n\n1.9.2 (2023-03-20)\n------------------\n\n- Get command entry points using importlib.metadata (#1220).\n- Instead of warning, transform_geom() raises an exception when some points\n  can't be reprojected unless the caller opts in to partial reprojection. This\n  restores the behavior of version 1.8.22.\n- Add support for open options to all CLI commands that call fiona.open\n  (#1215).\n- Fix a memory leak that can occur when iterating over a dataset using strides\n  (#1205).\n- ZipMemoryFile now supports zipped GDB data (#1203).\n\n1.9.1 (2023-02-09)\n------------------\n\n- Log a warning message when identically named fields are encountered (#1201).\n- Avoid dependence on listdir order in tests (#1193).\n- Prevent empty geometries arrays from appearing in __geo_interface__ (#1197).\n- setuptools added to pyproject.toml. Its pkg_resources module is used by the\n  CLI (#1191).\n\n1.9.0 (2023-01-30)\n------------------\n\n- CITATION.txt has been replaced by a new CITATION.cff file and the credits\n  have been updated.\n- In setup.py the distutils (deprecated) logger is no longer used.\n\n1.9b2 (2023-01-22)\n------------------\n\n- Add Feature.__geo_interface__ property (#1181).\n- Invalid creation options are filtered and ignored (#1180).\n- The readme doc has been shortened and freshened up, with a modern example for\n  version 1.9.0 (#1174).\n- The Geometry class now provides and looks for __geo_interface__ (#1174).\n- The top level fiona module now exports Feature, Geometry, and Properties\n  (#1174).\n- Functions that take Feature or Geometry objects will continue to take dicts\n  or objects that provide __geo_interface__ (#1177). This reverses the\n  deprecation introduced in 1.9a2.\n- Python ignores SIGPIPE by default. By never catching BrokenPipeError via\n  `except Exception` when, for example, piping the output of rio-shapes to\n  the Unix head program, we avoid getting an unhandled BrokenPipeError message\n  when the interpreter shuts down (#2689).\n\n1.9b1 (2022-12-13)\n------------------\n\nNew features:\n\n* Add listdir and listlayers method to io.MemoryFile (resolving #754).\n* Add support for TIN and triangle geometries (#1163).\n* Add an allow_unsupported_drivers option to fiona.open() (#1126).\n* Added support for the OGR StringList field type (#1141).\n\nChanges and bug fixes:\n\n* Missing and unused imports have been added or removed.\n* Make sure that errors aren't lost when a collection can't be saved properly\n  (#1169).\n* Ensure that ZipMemoryFile have the proper GDAL name after creation so that we\n  can use listdir() (#1092).\n* The fiona._loading module, which supports DLL loading on Windows,\n  has been moved into __init__.py and is no longer used anywhere else (#1168).\n* Move project metadata to pyproject.toml (#1165).\n* Update drvsupport.py to reflect new format capabilities in GDAL 3.6.0\n  (#1122).\n* Remove debug logging from env and _env modules.\n\n1.9a3 (2022-10-17)\n------------------\n\nPackaging:\n\n* Builds now require Cython >= 0.29.29 because of\n* https://github.com/cython/cython/issues/4609 (see #1143).\n* PyPI wheels now include GDAL 3.5.2, PROJ 9.0.1, and GEOS 3.11.0.\n* PyPI wheels are now available for Python 3.11.\n\n1.9a2 (2022-06-10)\n------------------\n\nDeprecations:\n\n- Fiona's API methods will accept feature and geometry dicts in 1.9.0, but this\n  usage is deprecated. Instances of Feature and Geometry will be required in\n  2.0.\n- The precision keyword argument of fiona.transform.transform_geom is\n  deprecated and will be removed in version 2.0.\n- Deprecated usage has been eliminated in the project. Fiona's tests pass when\n  run with a -Werror::DeprecationWarning filter.\n\nChanges:\n\n- Fiona's FionaDeprecationWarning now sub-classes DeprecationWarning.\n- Some test modules have beeen re-formatted using black.\n\nNew features:\n\n- Fiona Collections now carry a context exit stack into which we can push fiona\n  Envs and MemoryFiles (#1059).\n- Fiona has a new CRS class, like rasterio's, which is compatible with the CRS\n  dicts of previous versions (#714).\n\n1.9a1 (2022-05-19)\n------------------\n\nDeprecations:\n\n- The fiona.drivers() function has been deprecated and will be removed in\n  version 2.0. It should be replaced by fiona.Env().\n- The new fiona.meta module will be renamed to fiona.drivers in version 2.0.\n\nPackaging:\n\n- Source distributions contain no C source files and require Cython to create\n  them from .pyx files (#1096).\n\nChanges:\n\n- Shims for various versions of GDAL have been removed and are replaced by\n  Cython compilation conditions (#1093).\n- Use of CURL_CA_BUNDLE environment variable is replaced by a more specific\n  GDAL/PROJ_CURL_CA_BUNDLE (#1095).\n- Fiona's feature accessors now return instances of fiona.model.Feature instead\n  of Python dicts (#787). The Feature class is compatible with code that\n  expects GeoJSON-like dicts but also provides id, geometry, and properties\n  attributes. The last two of these are instances of fiona.model.Geometry and\n  fiona.model.Properties.\n- GDAL 3.1.0 is the minimum GDAL version.\n- Drop Python 2, and establish Python 3.7 as the minimum version (#1079).\n- Remove six and reduce footprint of fiona.compat (#985).\n\nNew features:\n\n- The appropriate format driver can be detected from filename in write mode (#948).\n- Driver metadata including dataset open and dataset and layer creations\n  options are now exposed through methods of the fiona.meta module (#950).\n- CRS WKT format support (#979).\n- Add 'where' SQL clause to set attribute filter (#961, #1097).\n\nBug fixes:\n\n- Env and Session classes have been updated for parity with rasterio and to\n  resolve a credential refresh bug (#1055).\n\n1.8.21 (2022-02-07)\n-------------------\n\nChanges:\n\n- Driver mode support tests have been made more general and less susceptible to\n  driver quirks involving feature fields and coordinate values (#1060).\n- OSError is raised on attempts to open a dataset in a Python file object in\n  \"a\" mode (see #1027).\n- Upgrade attrs, cython, etc to open up Python 3.10 support (#1049).\n\nBug fixes:\n\n- Allow FieldSkipLogFilter to handle exception messages as well as strings\n  (reported in #1035).\n- Clean up VSI files left by MemoryFileBase, resolving #1041.\n- Hard-coded \"utf-8\" collection encoding added in #423 has been removed\n  (#1057).\n\n1.8.20 (2021-05-31)\n-------------------\n\nPackaging:\n\n- Wheels include GDAL 3.3.0 and GEOS 3.9.1.\n\nBug fixes:\n\n- Allow use with click 8 and higher (#1015).\n\n1.8.19 (2021-04-07)\n-------------------\n\nPackaging:\n\n- Wheels include GDAL 3.2.1 and PROJ 7.2.1.\n\nBug fixes:\n\n- In fiona/env.py the GDAL data path is now configured using set_gdal_config\n  instead by setting the GDAL_DATA environment variable (#1007).\n- Spurious iterator reset warnings have been eliminatged (#987).\n\n1.8.18 (2020-11-17)\n-------------------\n\n- The precision option of transform has been fixed for the case of\n  GeometryCollections (#971, #972).\n- Added missing --co (creation) option to fio-load (#390).\n- If the certifi package can be imported, its certificate store location will\n  be passed to GDAL during import of fiona._env unless CURL_CA_BUNDLE is\n  already set.\n- Warn when feature fields named \"\" are found (#955).\n\n1.8.17 (2020-09-09)\n-------------------\n\n- To fix issue #952 the fio-cat command no longer cuts feature geometries at\n  the anti-meridian by default. A --cut-at-antimeridian option has been added\n  to allow cutting of geometries in a geographic destination coordinate\n  reference system.\n\n1.8.16 (2020-09-04)\n-------------------\n\n- More OGR errors and warnings arising in calls to GDAL C API functions are\n  surfaced (#946).\n- A circular import introduced in some cases in 1.8.15 has been fixed (#945).\n\n1.8.15 (2020-09-03)\n-------------------\n\n- Change shim functions to not return tuples (#942) as a solution for the\n  packaging problem reported in #941.\n- Raise a Python exception when VSIFOpenL fails (#937).\n\n1.8.14 (2020-08-31)\n-------------------\n\n- When creating a new Collection in a MemoryFile with a default (random) name\n  Fiona will attempt to use a format driver-supported file extension (#934).\n  When initializing a MemoryFile with bytes of data formatted for a vector\n  driver that requires a certain file name or extension, the user should\n  continue to pass an appropriate filename and/or extension.\n- Read support for FlatGeobuf has been enabled in the drvsupport module.\n- The MemoryFile implementation has been improved so that it can support multi-part\n  S3 downloads (#906). This is largely a port of code from rasterio.\n- Axis ordering for results of fiona.transform was wrong when CRS were passed\n  in the \"EPSG:dddd\" form (#919). This has been fixed by (#926).\n- Allow implicit access to the only dataset in a ZipMemoryFile. The path\n  argument of ZipMemoryFile.open() is now optional (#928).\n- Improve support for datetime types: support milliseconds (#744), timezones (#914)\n  and improve warnings if type is not supported by driver (#572).\n- Fix \"Failed to commit transaction\" TransactionError for FileGDB driver.\n- Load GDAL DLL dependencies on Python 3.8+ / Windows with add_dll_directory() (#851).\n- Do not require optional properties (#848).\n- Ensure that slice does not overflow available data (#884).\n- Resolve issue when \"ERROR 4: Unable to open EPSG support file gcs.csv.\" is raised on\n  importing fiona (#897).\n- Resolve issue resulting in possible mixed up fields names (affecting only DXF, GPX,\n  GPSTrackMacker and DGN driver) (#916).\n- Ensure crs_wkt is passed when writing to MemoryFile (#907).\n\n\n1.8.13.post1 (2020-02-21)\n-------------------------\n\n- This release is being made to improve binary wheel compatibility with shapely\n  1.7.0. There have been no changes to the fiona package code since 1.8.13.\n\n1.8.13 (2019-12-05)\n-------------------\n\n- The Python version specs for argparse and ordereddict in 1.8.12 were wrong\n  and have been corrected (#843).\n\n1.8.12 (2019-12-04)\n-------------------\n\n- Specify Python versions for argparse, enum34, and ordereddict requirements\n  (#842).\n\n1.8.11 (2019-11-07)\n-------------------\n\n- Fix an access violation on Windows (#826).\n\n1.8.10 (2019-11-07)\n-------------------\n\nDeprecations:\n\n- Use of vfs keyword argument with open or listlayers has been previously noted\n  as deprecated, but now triggers a deprecation warning.\n\nBug fixes:\n\n- fiona.open() can now create new datasets using CRS URNs (#823).\n- listlayers() now accepts file and Path objects, like open() (#825).\n- Use new set_proj_search_path() function to set the PROJ data search path. For\n  GDAL versions before 3.0 this sets the PROJ_LIB environment variable. For\n  GDAL version 3.0 this calls OSRSetPROJSearchPaths(), which overrides\n  PROJ_LIB.\n- Remove old and unused _drivers extension module.\n- Check for header.dxf file instead of pcs.csv when looking for installed GDAL\n  data. The latter is gone with GDAL 3.0 but the former remains (#818).\n\n1.8.9.post2 (2019-10-22)\n------------------------\n\n- The 1.8.9.post1 release introduced a bug affecting builds of the package from\n  a source distribution using GDAL 2.x. This bug has been fixed in commit\n  960568d.\n\n1.8.9.post1 (2019-10-22)\n------------------------\n\n- A change has been made to the package setup script so that the shim module\n  for GDAL 3 is used when building the package from a source distribution.\n  There are no other changes to the package.\n\n1.8.9 (2019-10-21)\n------------------\n\n- A shim module and support for GDAL 3.0 has been added. The package can now be\n  built and used with GDAL 3.0 and PROJ 6.1 or 6.2. Note that the 1.8.9 wheels\n  we will upload to PyPI will contain GDAL 2.4.2 and PROJ 4.9.3 as in the 1.8.8\n  wheels.\n\n1.8.8 (2019-09-25)\n------------------\n\n- The schema of geopackage files with a geometry type code of 3000 could not be\n  reported using Fiona 1.8.7. This bug is fixed.\n\n1.8.7 (2019-09-24)\n------------------\n\nBug fixes:\n\n- Regression in handling of polygons with M values noted under version 1.8.5\n  below was in fact not fixed then (see new report #789), but is fixed in\n  version 1.8.7.\n- Windows filenames containing \"!\" are now parsed correctly, fixing issue #742.\n\nUpcoming changes:\n\n- In version 1.9.0, the objects yielded when a Collection is iterated will be\n  mutable mappings but will no longer be instances of Python's dict. Version\n  1.9 is intended to be backwards compatible with 1.8 except where user code\n  tests `isinstance(feature, dict)`. In version 2.0 the new Feature, Geometry,\n  and Properties classes will become immutable mappings. See\n  https://github.com/Toblerity/fiona-rfc/blob/master/rfc/0001-fiona-2-0-changes.md\n  for more discussion of the upcoming changes for version 2.0.\n\n1.8.6 (2019-03-18)\n------------------\n\n- The advertisement for JSON driver enablement in 1.8.5 was false (#176), but\n  in this release they are ready for use.\n\n1.8.5 (2019-03-15)\n------------------\n\n- GDAL seems to work best if GDAL_DATA is set as early as possible. Ideally it\n  is set when building the library or in the environment before importing\n  Fiona, but for wheels we patch GDAL_DATA into os.environ when fiona.env\n  is imported. This resolves #731.\n- A combination of bugs which allowed .cpg files to be overlooked has been\n  fixed (#726).\n- On entering a collection context (Collection.__enter__) a new anonymous GDAL\n  environment is created if needed and entered. This makes `with\n  fiona.open(...) as collection:` roughly equivalent to `with fiona.open(...)\n  as collection, Env():`. This helps prevent bugs when Collections are created\n  and then used later or in different scopes.\n- Missing GDAL support for TopoJSON, GeoJSONSeq, and ESRIJSON has been enabled\n  (#721).\n- A regression in handling of polygons with M values (#724) has been fixed.\n- Per-feature debug logging calls in OGRFeatureBuilder methods have been\n  eliminated to improve feature writing performance (#718).\n- Native support for datasets in Google Cloud Storage identified by \"gs\"\n  resource names has been added (#709).\n- Support has been added for triangle, polyhedral surface, and TIN geometry\n  types (#679).\n- Notes about using the MemoryFile and ZipMemoryFile classes has been added to\n  the manual (#674).\n\n1.8.4 (2018-12-10)\n------------------\n\n- 3D geometries can now be transformed with a specified precision (#523).\n- A bug producing a spurious DriverSupportError for Shapefiles with a \"time\"\n  field (#692) has been fixed.\n- Patching of the GDAL_DATA environment variable was accidentally left in place\n  in 1.8.3 and now has been removed.\n\n1.8.3 (2018-11-30)\n------------------\n\n- The RASTERIO_ENV config environment marker this project picked up from\n  Rasterio has been renamed to FIONA_ENV (#665).\n- Options --gdal-data and --proj-data have been added to the fio-env command so\n  that users of Rasterio wheels can get paths to set GDAL_DATA and PROJ_LIB\n  environment variables.\n- The unsuccessful attempt to make GDAL and PROJ support file discovery and\n  configuration automatic within collection's crs and crs_wkt properties has\n  been reverted.  Users must execute such code inside a `with Env()` block or\n  set the GDAL_DATA and PROJ_LIB environment variables needed by GDAL.\n\n1.8.2 (2018-11-19)\n------------------\n\nBug fixes:\n\n- Raise FionaValueError when an iterator's __next__ is called and the session\n  is found to be missing or inactive instead of passing a null pointer to\n  OGR_L_GetNextFeature (#687).\n\n1.8.1 (2018-11-15)\n------------------\n\nBug fixes:\n\n- Add checks around OSRGetAuthorityName and OSRGetAuthorityCode calls that will\n  log problems with looking up these items.\n- Opened data sources are now released before we raise exceptions in\n  WritingSession.start (#676). This fixes an issue with locked files on\n  Windows.\n- We now ensure that an Env instance exists when getting the crs or crs_wkt\n  properties of a Collection (#673, #690). Otherwise, required GDAL and PROJ\n  data files included in Fiona wheels can not be found.\n- GDAL and PROJ data search has been refactored to improve testability (#678).\n- In the project's Cython code, void* pointers have been replaced with proper\n  GDAL types (#672).\n- Pervasive warning level log messages about ENCODING creation options (#668)\n  have been eliminated.\n\n1.8.0 (2018-10-31)\n------------------\n\nThis is the final 1.8.0 release. Thanks, everyone!\n\nBug fixes:\n\n- We cpdef Session.stop so that it has a C version that can be called safely\n  from __dealloc__, fixing a PyPy issue (#659, #553).\n\n1.8rc1 (2018-10-26)\n-------------------\n\nThere are no changes in 1.8rc1 other than more test standardization and the\nintroduction of a temporary test_collection_legacy.py module to support the\nbuild of fully tested Python 2.7 macosx wheels on Travis-CI.\n\n1.8b2 (2018-10-23)\n------------------\n\nBug fixes:\n\n- The ensure_env_with_credentials decorator will no longer clobber credentials\n  of the outer environment. This fixes a bug reported to the Rasterio project\n  and which also existed in Fiona.\n- An unused import of the packaging module and the dependency have been \n  removed (#653).\n- The Env class logged to the 'rasterio' hierarchy instead of 'fiona'. This\n  mistake has been corrected (#646).\n- The Mapping abstract base class is imported from collections.abc when\n  possible (#647).\n\nRefactoring:\n\n- Standardization of the tests on pytest functions and fixtures continues and\n  is nearing completion (#648, #649, #650, #651, #652).\n\n1.8b1 (2018-10-15)\n------------------\n\nDeprecations:\n\n- Collection slicing has been deprecated and will be prohibited in a future\n  version.\n\nBug fixes:\n\n- Rasterio CRS objects passed to transform module methods will be converted\n  to dicts as needed (#590).\n- Implicitly convert curve geometries to their linear approximations rather\n  than failing (#617).\n- Migrated unittest test cases in test_collection.py and test_layer.py to the\n  use of the standard data_dir and path_coutwildrnp_shp fixtures (#616).\n- Root logger configuration has been removed from all test scripts (#615).\n- An AWS session is created for the CLI context Env only if explicitly\n  requested, matching the behavior of Rasterio's CLI (#635).\n- Dependency on attrs is made explicit.\n- Other dependencies are pinned to known good versions in requirements files.\n- Unused arguments have been removed from the Env constructor (#637).\n\nRefactoring:\n\n- A with_context_env decorator has been added and used to set up the GDAL\n  environment for CLI commands. The command functions themselves are now\n  simplified.\n\n1.8a3 (2018-10-01)\n------------------\n\nDeprecations:\n\n- The ``fiona.drivers()`` context manager is officially deprecated. All\n  users should switch to ``fiona.Env()``, which registers format drivers and\n  manages GDAL configuration in a reversible manner.\n\nBug fixes:\n\n- The Collection class now filters log messages about skipped fields to\n  a maximum of one warning message per field (#627).\n- The boto3 module is only imported when needed (#507, #629).\n- Compatibility with Click 7.0 is achieved (#633).\n- Use of %r instead of %s in a debug() call prevents UnicodeDecodeErrors\n  (#620).\n\n1.8a2 (2018-07-24)\n------------------\n\nNew features:\n\n- 64-bit integers are the now the default for int type fields (#562, #564).\n- 'http', 's3', 'zip+http', and 'zip+s3' URI schemes for datasets are now\n  supported (#425, #426).\n- We've added a ``MemoryFile`` class which supports formatted in-memory\n  feature collections (#501).\n- Added support for GDAL 2.x boolean field sub-type (#531).\n- A new ``fio rm`` command makes it possible to cleanly remove multi-file\n  datasets (#538).\n- The geometry type in a feature collection is more flexible. We can now\n  specify not only a single geometry type, but a sequence of permissible types,\n  or \"Any\" to permit any geometry type (#539).\n- Support for GDAL 2.2+ null fields has been added (#554).\n- The new ``gdal_open_vector()`` function of our internal API provides much\n  improved error handling (#557).\n\nBug fixes:\n\n- The bug involving OrderedDict import on Python 2.7 has been fixed (#533).\n- An ``AttributeError`` raised when the ``--bbox`` option of fio-cat is used\n  with more than one input file has been fixed (#543, #544).\n- Obsolete and derelict fiona.tool module has been removed.\n- Revert the change in 0a2bc7c that discards Z in geometry types when a\n  collection's schema is reported (#541).\n- Require six version 1.7 or higher (#550).\n- A regression related to \"zip+s3\" URIs has been fixed.\n- Debian's GDAL data locations are now searched by default (#583).\n\n1.8a1 (2017-11-06)\n------------------\n\nNew features:\n\n- Each call of ``writerecords()`` involves one or more transactions of up to\n  20,000 features each. This improves performance when writing GeoPackage files\n  as the previous transaction size was only 200 features (#476, #491).\n\nPackaging:\n\n- Fiona's Cython source files have been refactored so that there are no longer\n  separate extension modules for GDAL 1.x and GDAL 2.x. Instead there is a base\n  extension module based on GDAL 2.x and shim modules for installations that\n  use GDAL 1.x.\n\n1.7.11.post1 (2018-01-08)\n-------------------------\n\n- This post-release adds missing expat (and thereby GPX format) support to\n  the included GDAL library (still version 2.2.2).\n\n1.7.11 (2017-12-14)\n-------------------\n\n- The ``encoding`` keyword argument for ``fiona.open()``, which is intended\n  to allow a caller to override a data source's own and possibly erroneous\n  encoding, has not been working (#510, #512). The problem is that we weren't\n  always setting GDAL open or config options before opening the data sources.\n  This bug is resolved by a number of commits in the maint-1.7 branch and\n  the fix is demonstrated in tests/test_encoding.py.\n- An ``--encoding`` option has been added to fio-load to enable creation of\n  encoded shapefiles with an accompanying .cpg file (#499, #517).\n\n1.7.10.post1 (2017-10-30)\n-------------------------\n\n- A post-release has been made to fix a problem with macosx wheels uploaded\n  to PyPI.\n\n1.7.10 (2017-10-26)\n-------------------\n\nBug fixes:\n\n- An extraneous printed line from the ``rio cat --layers`` validator has been\n  removed (#478).\n\nPackaging:\n\n- Official OS X and Manylinux1 wheels (on PyPI) for this release will be\n  compatible with Shapely 1.6.2 and Rasterio 1.0a10 wheels.\n\n1.7.9.post1 (2017-08-21)\n------------------------\n\nThis release introduces no changes in the Fiona package. It upgrades GDAL\nfrom 2.2.0 to 2.2.1 in wheels that we publish to the Python Package Index.\n\n1.7.9 (2017-08-17)\n------------------\n\nBug fixes:\n\n- Acquire the GIL for GDAL error callback functions to prevent crashes when\n  GDAL errors occur when the GIL has been released by user code.\n- Sync and flush layers when closing even when the number of features is not\n  precisely known (#467).\n\n1.7.8 (2017-06-20)\n------------------\n\nBug fixes:\n\n- Provide all arguments needed by CPLError based exceptions (#456).\n\n1.7.7 (2017-06-05)\n------------------\n\nBug fixes:\n\n- Switch logger `warn()` (deprecated) calls to `warning()`.\n- Replace all relative imports and cimports in Cython modules with absolute\n  imports (#450).\n- Avoid setting `PROJ_LIB` to a non-existent directory (#439).\n\n1.7.6 (2017-04-26)\n------------------\n\nBug fixes:\n\n- Fall back to `share/proj` for PROJ_LIB (#440).\n- Replace every call to `OSRDestroySpatialReference()` with `OSRRelease()`,\n  fixing the GPKG driver crasher reported in #441 (#443).\n- Add a `DriverIOError` derived from `IOError` to use for driver-specific\n  errors such as the GeoJSON driver's refusal to overwrite existing files.\n  Also we now ensure that when this error is raised by `fiona.open()` any\n  created read or write session is deleted, this eliminates spurious \n  exceptions on teardown of broken `Collection` objects (#437, #444).\n\n1.7.5 (2017-03-20)\n------------------\n\nBug fixes:\n\n- Opening a data file in read (the default) mode with `fiona.open()` using the\n  the `driver` or `drivers` keyword arguments (to specify certain format \n  drivers) would sometimes cause a crash on Windows due to improperly\n  terminated lists of strings (#428). The fix: Fiona's buggy `string_list()`\n  has been replaced by GDAL's `CSLAddString()`.\n\n1.7.4 (2017-02-20)\n------------------\n\nBug fixes:\n\n- OGR's EsriJSON detection fails when certain keys aren't found in the first\n  6000 bytes of data passed to `BytesCollection` (#422). A .json file extension\n  is now explicitly given to the in-memory file behind `BytesCollection` when\n  the `driver='GeoJSON'` keyword argument is given (#423). \n\n1.7.3 (2017-02-14)\n------------------\n\nRoses are red.\nTan is a pug.\nSoftware regression's\nthe most embarrassing bug.\n\nBug fixes:\n\n- Use __stdcall for GDAL error handling callback on Windows as in Rasterio.\n- Turn on latent support for zip:// URLs in rio-cat and rio-info (#421).\n- The 1.7.2 release broke support for zip files with absolute paths (#418).\n  This regression has been fixed with tests to confirm.\n\n1.7.2 (2017-01-27)\n------------------\n\nFuture Deprecation:\n\n- `Collection.__next__()` is buggy in that it can lead to duplication of \n  features when used in combination with `Collection.filter()` or\n  `Collection.__iter__()`. It will be removed in Fiona 2.0. Please check for\n  usage of this deprecated feature by running your tests or programs with\n  `PYTHONWARNINGS=\"always:::fiona\"` or `-W\"always:::fiona\"` and switch from\n  `next(collection)` to `next(iter(collection))` (#301).\n\nBug fix:\n\n- Zipped streams of bytes can be accessed by `BytesCollection` (#318).\n\n1.7.1.post1 (2016-12-23)\n------------------------\n- New binary wheels using version 1.2.0 of sgillies/frs-wheel-builds. See\n  https://github.com/sgillies/frs-wheel-builds/blob/master/CHANGES.txt.\n\n1.7.1 (2016-11-16)\n------------------\n\nBug Fixes:\n\n- Prevent Fiona from stumbling over 'Z', 'M', and 'ZM' geometry types\n  introduced in GDAL 2.1 (#384). Fiona 1.7.1 doesn't add explicit support for\n  these types, they are coerced to geometry types 1-7 ('Point', 'LineString',\n  etc.)\n- Raise an `UnsupportedGeometryTypeError` when a bogus or unsupported \n  geometry type is encountered in a new collection's schema or elsewhere\n  (#340).\n- Enable `--precision 0` for fio-cat (#370).\n- Prevent datetime exceptions from unnecessarily stopping collection iteration\n  by yielding `None` (#385)\n- Replace log.warn calls with log.warning calls (#379).\n- Print an error message if neither gdal-config or `--gdalversion` indicate\n  a GDAL C API version when running `setup.py` (#364).\n- Let dict-like subclasses through CRS type checks (#367).\n\n1.7.0post2 (2016-06-15)\n-----------------------\n\nPackaging: define extension modules for 'clean' and 'config' targets (#363).\n\n1.7.0post1 (2016-06-15)\n-----------------------\n\nPackaging: No files are copied for the 'clean' setup target (#361, #362).\n\n1.7.0 (2016-06-14)\n------------------\n\nThe C extension modules in this library can now be built and used with either\na 1.x or 2.x release of the GDAL library. Big thanks to Ren\u00e9 Buffat for\nleading this effort.\n\nRefactoring:\n\n- The `ogrext1.pyx` and `ogrext2.pyx` files now use separate\n  C APIs defined in `ogrext1.pxd` and `ogrex2.pxd`. The other extension\n  modules have been refactored so that they do not depend on either of these\n  modules and use subsets of the GDAL/OGR API compatible with both GDAL 1.x and\n  2.x (#359).\n\nPackaging:\n\n- Source distributions now contain two different sources for the\n  `ogrext` extension module. The `ogrext1.c` file will be used with GDAL 1.x\n  and the `ogrext2.c` file will be used with GDAL 2.x.\n\n1.7b2 (2016-06-13)\n------------------\n\n- New feature: enhancement of the `--layer` option for fio-cat and fio-dump\n  to allow separate layers of one or more multi-layer input files to be\n  selected (#349).\n\n1.7b1 (2016-06-10)\n------------------\n\n- New feature: support for GDAL version 2+ (#259).\n- New feature: a new fio-calc CLI command (#273).\n- New feature: `--layer` options for fio-info (#316) and fio-load (#299).\n- New feature: a `--no-parse` option for fio-collect that lets a careful user\n  avoid extra JSON serialization and deserialization (#306).\n- Bug fix: `+wktext` is now preserved when serializing CRS from WKT to PROJ.4\n  dicts (#352).\n- Bug fix: a small memory leak when opening a collection has been fixed (#337).\n- Bug fix: internal unicode errors now result in a log message and a \n  `UnicodeError` exception, not a `TypeError` (#356).\n\n1.6.4 (2016-05-06)\n------------------\n- Raise ImportError if the active GDAL library version is >= 2.0 instead of\n  failing unpredictably (#338, #341). Support for GDAL>=2.0 is coming in\n  Fiona 1.7.\n\n1.6.3.post1 (2016-03-27)\n------------------------\n- No changes to the library in this post-release version, but there is a\n  significant change to the distributions on PyPI: to help make Fiona more\n  compatible with Shapely on OS X, the GDAL shared library included in the\n  macosx (only) binary wheels now statically links the GEOS library. See\n  https://github.com/sgillies/frs-wheel-builds/issues/5.\n\n1.6.3 (2015-12-22)\n------------------\n- Daytime has been decreasing in the Northern Hemisphere, but is now\n  increasing again as it should.\n- Non-UTF strings were being passed into OGR functions in some situations\n  and on Windows this would sometimes crash a Python process (#303). Fiona\n  now raises errors derived from UnicodeError when field names or field\n  values can't be encoded.\n\n1.6.2 (2015-09-22)\n------------------\n- Providing only PROJ4 representations in the dataset meta property resulted in\n  loss of CRS information when using the `fiona.open(..., **src.meta) as dst`\n  pattern (#265). This bug has been addressed by adding a crs_wkt item to the`\n  meta property and extending the `fiona.open()` and the collection constructor\n  to look for and prioritize this keyword argument.\n\n1.6.1 (2015-08-12)\n------------------\n- Bug fix: Fiona now deserializes JSON-encoded string properties provided by\n  the OGR GeoJSON driver (#244, #245, #246).\n- Bug fix: proj4 data was not copied properly into binary distributions due to\n  a typo (#254).\n\nSpecial thanks to WFMU DJ Liz Berg for the awesome playlist that's fueling my\nrelease sprint. Check it out at https://wfmu.org/playlists/shows/62083. You\ncan't unhear Love Coffin.\n\n1.6.0 (2015-07-21)\n------------------\n- Upgrade Cython requirement to 0.22 (#214).\n- New BytesCollection class (#215).\n- Add GDAL's OpenFileGDB driver to registered drivers (#221).\n- Implement CLI commands as plugins (#228).\n- Raise click.abort instead of calling sys.exit, preventing suprising exits\n  (#236).\n\n1.5.1 (2015-03-19)\n------------------\n- Restore test data to sdists by fixing MANIFEST.in (#216).\n\n1.5.0 (2015-02-02)\n------------------\n- Finalize GeoJSON feature sequence options (#174).\n- Fix for reading of datasets that don't support feature counting (#190).\n- New test dataset (#188).\n- Fix for encoding error (#191).\n- Remove confusing warning (#195).\n- Add data files for binary wheels (#196).\n- Add control over drivers enabled when reading datasets (#203).\n- Use cligj for CLI options involving GeoJSON (#204).\n- Fix fio-info --bounds help (#206).\n\n1.4.8 (2014-11-02)\n------------------\n- Add missing crs_wkt property as in Rasterio (#182).\n\n1.4.7 (2014-10-28)\n------------------\n- Fix setting of CRS from EPSG codes (#149).\n\n1.4.6 (2014-10-21)\n------------------\n- Handle 3D coordinates in bounds() #178.\n\n1.4.5 (2014-10-18)\n------------------\n- Add --bbox option to fio-cat (#163).\n- Skip geopackage tests if run from an sdist (#167).\n- Add fio-bounds and fio-distrib.\n- Restore fio-dump to working order.\n\n1.4.4 (2014-10-13)\n------------------\n- Fix accidental requirement on GDAL 1.11 introduced in 1.4.3 (#164).\n\n1.4.3 (2014-10-10)\n------------------\n- Add support for geopackage format (#160).\n- Add -f and --format aliases for --driver in CLI (#162).\n- Add --version option and env command to CLI.\n\n1.4.2 (2014-10-03)\n------------------\n- --dst-crs and --src-crs options for fio cat and collect (#159).\n\n1.4.1 (2014-09-30)\n------------------\n- Fix encoding bug in collection's __getitem__ (#153).\n\n1.4.0 (2014-09-22)\n------------------\n- Add fio cat and fio collect commands (#150).\n- Return of Python 2.6 compatibility (#148).\n- Improved CRS support (#149).\n\n1.3.0 (2014-09-17)\n------------------\n- Add single metadata item accessors to fio inf (#142).\n- Move fio to setuptools entry point (#142).\n- Add fio dump and load commands (#143).\n- Remove fio translate command.\n\n1.2.0 (2014-09-02)\n------------------\n- Always show property width and precision in schema (#123).\n- Write datetime properties of features (#125).\n- Reset spatial filtering in filter() (#129).\n- Accept datetime.date objects as feature properties (#130).\n- Add slicing to collection iterators (#132).\n- Add geometry object masks to collection iterators (#136).\n- Change source layout to match Shapely and Rasterio (#138).\n\n1.1.6 (2014-07-23)\n------------------\n- Implement Collection __getitem__() (#112).\n- Leave GDAL finalization to the DLL's destructor (#113).\n- Add Collection keys(), values(), items(), __contains__() (#114).\n- CRS bug fix (#116).\n- Add fio CLI program.\n  \n1.1.5 (2014-05-21)\n------------------\n- Addition of cpl_errs context manager (#108).\n- Check for NULLs with '==' test instead of 'is' (#109).\n- Open auxiliary files with encoding='utf-8' in setup for Python 3 (#110).\n\n1.1.4 (2014-04-03)\n------------------\n- Convert 'long' in schemas to 'int' (#101).\n- Carefully map Python schema to the possibly munged internal schema (#105).\n- Allow writing of features with geometry: None (#71).\n\n1.1.3 (2014-03-23)\n------------------\n- Always register all GDAL and OGR drivers when entering the DriverManager\n  context (#80, #92).\n- Skip unsupported field types with a warning (#91).\n- Allow OGR config options to be passed to fiona.drivers() (#90, #93).\n- Add a bounds() function (#100).\n- Turn on GPX driver.\n\n1.1.2 (2014-02-14)\n------------------\n- Remove collection slice left in dumpgj (#88).\n\n1.1.1 (2014-02-02)\n------------------\n- Add an interactive file inspector like the one in rasterio.\n- CRS to_string bug fix (#83).\n\n1.1 (2014-01-22)\n----------------\n- Use a context manager to manage drivers (#78), a backwards compatible but\n  big change. Fiona is now compatible with rasterio and plays better with the\n  osgeo package.\n\n1.0.3 (2014-01-21)\n------------------\n- Fix serialization of +init projections (#69).\n\n1.0.2 (2013-09-09)\n------------------\n- Smarter, better test setup (#65, #66, #67).\n- Add type='Feature' to records read from a Collection (#68).\n- Skip geometry validation when using GeoJSON driver (#61).\n- Dumpgj file description reports record properties as a list (as in\n  dict.items()) instead of a dict.\n\n1.0.1 (2013-08-16)\n------------------\n- Allow ordering of written fields and preservation of field order when\n  reading (#57).\n\n1.0 (2013-07-30)\n-----------------\n- Add prop_type() function.\n- Allow UTF-8 encoded paths for Python 2 (#51). For Python 3, paths must\n  always be str, never bytes.\n- Remove encoding from collection.meta, it's a file creation option only.\n- Support for linking GDAL frameworks (#54).\n\n0.16.1 (2013-07-02)\n-------------------\n- Add listlayers, open, prop_width to __init__py:__all__.\n- Reset reading of OGR layer whenever we ask for a collection iterator (#49).\n\n0.16 (2013-06-24)\n-----------------\n- Add support for writing layers to multi-layer files.\n- Add tests to reach 100% Python code coverage.\n\n0.15 (2013-06-06)\n-----------------\n- Get and set numeric field widths (#42).\n- Add support for multi-layer data sources (#17).\n- Add support for zip and tar virtual filesystems (#45).\n- Add listlayers() function.\n- Add GeoJSON to list of supported formats (#47).\n- Allow selection of layers by index or name.\n\n0.14 (2013-05-04)\n-----------------\n- Add option to add JSON-LD in the dumpgj program.\n- Compare values to six.string_types in Collection constructor.\n- Add encoding to Collection.meta.\n- Document dumpgj in README.\n\n0.13 (2013-04-30)\n-----------------\n- Python 2/3 compatibility in a single package. Pythons 2.6, 2.7, 3.3 now supported.\n\n0.12.1 (2013-04-16)\n-------------------\n- Fix messed up linking of README in sdist (#39).\n\n0.12 (2013-04-15)\n-----------------\n- Fix broken installation of extension modules (#35).\n- Log CPL errors at their matching Python log levels.\n- Use upper case for encoding names within OGR, lower case in Python.\n\n0.11 (2013-04-14)\n-----------------\n- Cythonize .pyx files (#34).\n- Work with or around OGR's internal recoding of record data (#35).\n- Fix bug in serialization of int/float PROJ.4 params.\n\n0.10 (2013-03-23)\n-----------------\n- Add function to get the width of str type properties.\n- Handle validation and schema representation of 3D geometry types (#29).\n- Return {'geometry': None} in the case of a NULL geometry (#31).\n\n0.9.1 (2013-03-07)\n------------------\n- Silence the logger in ogrext.so (can be overridden).\n- Allow user specification of record field encoding (like 'Windows-1252' for\n  Natural Earth shapefiles) to help when OGR can't detect it.\n\n0.9 (2013-03-06)\n----------------\n- Accessing file metadata (crs, schema, bounds) on never inspected closed files\n  returns None without exceptions.\n- Add a dict of supported_drivers and their supported modes.\n- Raise ValueError for unsupported drivers and modes.\n- Remove asserts from ogrext.pyx.\n- Add validate_record method to collections.\n- Add helpful coordinate system functions to fiona.crs.\n- Promote use of fiona.open over fiona.collection.\n- Handle Shapefile's mix of LineString/Polygon and multis (#18).\n- Allow users to specify width of shapefile text fields (#20).\n\n0.8 (2012-02-21)\n----------------\n- Replaced .opened attribute with .closed (product of collection() is always\n  opened). Also a __del__() which will close a Collection, but still not to be\n  depended upon.\n- Added writerecords method.\n- Added a record buffer and better counting of records in a collection.\n- Manage one iterator per collection/session.\n- Added a read-only bounds property.\n\n0.7 (2012-01-29)\n----------------\n- Initial timezone-naive support for date, time, and datetime fields. Don't use\n  these field types if you can avoid them. RFC 3339 datetimes in a string field\n  are much better.\n\n0.6.2 (2012-01-10)\n------------------\n- Diagnose and set the driver property of collection in read mode.\n- Fail if collection paths are not to files. Multi-collection workspaces are\n  a (maybe) TODO.\n\n0.6.1 (2012-01-06)\n------------------\n- Handle the case of undefined crs for disk collections.\n\n0.6 (2012-01-05)\n----------------\n- Support for collection coordinate reference systems based on Proj4.\n- Redirect OGR warnings and errors to the Fiona log.\n- Assert that pointers returned from the ograpi functions are not NULL before\n  using.\n\n0.5 (2011-12-19)\n----------------\n- Support for reading and writing collections of any geometry type.\n- Feature and Geometry classes replaced by mappings (dicts).\n- Removal of Workspace class.\n\n0.2 (2011-09-16)\n----------------\n- Rename WorldMill to Fiona.\n\n0.1.1 (2008-12-04)\n------------------\n- Support for features with no geometry.\n\n\nCredits\n=======\n\nFiona is written by:\n\n- Alan D. Snow <alansnow21@gmail.com>\n- Ariel Nunez <ingenieroariel@gmail.com>\n- Ariki <Ariki@users.noreply.github.com>\n- Bas Couwenberg <sebastic@xs4all.nl>\n- Brandon Liu <bdon@bdon.org>\n- Brendan Ward <bcward@consbio.org>\n- Chris Mutel <cmutel@gmail.com>\n- Denis Rykov <rykovd@gmail.com>\n- dimlev <dimlev@gmail.com>\n- Efr\u00e9n <chefren@users.noreply.github.com>\n- Egor Fedorov <egor.fedorov@emlid.com>\n- Elliott Sales de Andrade <quantum.analyst@gmail.com>\n- Even Rouault <even.rouault@mines-paris.org>\n- Ewout ter Hoeven <E.M.terHoeven@student.tudelft.nl>\n- Filipe Fernandes <ocefpaf@gmail.com>\n- fredj <frederic.junod@camptocamp.com>\n- G\u00e9raud <galak75@users.noreply.github.com>\n- Hannes Gr\u00e4uler <hgraeule@uos.de>\n- Jacob Wasserman <jwasserman@gmail.com>\n- Jesse Crocker <jesse@gaiagps.com>\n- Johan Van de Wauw <johan.vandewauw@gmail.com>\n- Joris Van den Bossche <jorisvandenbossche@gmail.com>\n- Joshua Arnott <josh@snorfalorpagus.net>\n- Juan Luis Cano Rodr\u00edguez <Juanlu001@users.noreply.github.com>\n- Kelsey Jordahl <kjordahl@enthought.com>\n- Kevin Wurster <wursterk@gmail.com>\n- Ludovic Delaun\u00e9 <ludotux@gmail.com>\n- Martijn Visser <mgvisser@gmail.com>\n- Matthew Perry <perrygeo@gmail.com>\n- Micah Cochran <micahcochran@users.noreply.github.com>\n- Michael Weisman <mweisman@gmail.com>\n- Michele Citterio <michele@citterio.net>\n- Mike Taves <mwtoews@gmail.com>\n- Miro Hron\u010dok <miro@hroncok.cz>\n- Oliver Tonnhofer <olt@bogosoft.com>\n- Patrick Young <patrick.mckendree.young@gmail.com>\n- qinfeng <guo.qinfeng+github@gmail.com>\n- Ren\u00e9 Buffat <buffat@gmail.com>\n- Ryan Grout <rgrout@continuum.io>\n- Sean Gillies <sean.gillies@gmail.com>\n- Sid Kapur <sid-kap@users.noreply.github.com>\n- Simon Norris <snorris@hillcrestgeo.ca>\n- Stefano Costa <steko@iosa.it>\n- Stephane Poss <stephposs@gmail.com>\n- Tim Tr\u00f6ndle <tim.troendle@usys.ethz.ch>\n- wilsaj <wilson.andrew.j+github@gmail.com>\n\nThe GeoPandas project (Joris Van den Bossche et al.) has been a major driver\nfor new features in 1.8.0.\n\nFiona would not be possible without the great work of Frank Warmerdam and other\nGDAL/OGR developers.\n\nSome portions of this work were supported by a grant (for Pleiades_) from the\nU.S. National Endowment for the Humanities (https://www.neh.gov).\n\n.. _Pleiades: https://pleiades.stoa.org\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause",
    "summary": "Fiona reads and writes spatial data files",
    "version": "1.9.4.post1",
    "project_urls": {
        "Documentation": "https://fiona.readthedocs.io/",
        "Repository": "https://github.com/Toblerity/Fiona"
    },
    "split_keywords": [
        "gis",
        "vector",
        "feature",
        "data"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8104616d37d4750bd52d606461095a53e55b206be927ac270e497e3bf0962546",
                "md5": "58af030084732d49f031b0eb3c55db40",
                "sha256": "d6483a20037db2209c8e9a0c6f1e552f807d03c8f42ed0c865ab500945a37c4d"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58af030084732d49f031b0eb3c55db40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 18618715,
            "upload_time": "2023-05-23T23:14:48",
            "upload_time_iso_8601": "2023-05-23T23:14:48.271458Z",
            "url": "https://files.pythonhosted.org/packages/81/04/616d37d4750bd52d606461095a53e55b206be927ac270e497e3bf0962546/Fiona-1.9.4.post1-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1695a0b93a97013fb0b5ddd4be7e4844f9524b82bec5fe167314c4a2dce0cf5e",
                "md5": "23e9626edd2b68f0a66e3282edd07664",
                "sha256": "dbe158947099a83ad16f9acd3a21f50ff01114c64e2de67805e382e6b6e0083a"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "23e9626edd2b68f0a66e3282edd07664",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14833246,
            "upload_time": "2023-05-23T23:14:53",
            "upload_time_iso_8601": "2023-05-23T23:14:53.649480Z",
            "url": "https://files.pythonhosted.org/packages/16/95/a0b93a97013fb0b5ddd4be7e4844f9524b82bec5fe167314c4a2dce0cf5e/Fiona-1.9.4.post1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57b9c3821af48b949f8db275dc5bf0d66fd4cb6a492cd96d3f427bced20945ae",
                "md5": "7fc74b7408d37fc95037348cf51e1b06",
                "sha256": "2c2c7b09eecee3bb074ef8aa518cd6ab30eb663c6fdd0eff3c88d454a9746eaa"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fc74b7408d37fc95037348cf51e1b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 16400281,
            "upload_time": "2023-05-23T23:14:59",
            "upload_time_iso_8601": "2023-05-23T23:14:59.266544Z",
            "url": "https://files.pythonhosted.org/packages/57/b9/c3821af48b949f8db275dc5bf0d66fd4cb6a492cd96d3f427bced20945ae/Fiona-1.9.4.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a61623b99b4738c27f4e4f5e5f255216a646e7e6e9cd5e22b108dfca8095dfc",
                "md5": "39ccdc846e3beb3e7301d88d798cc4d0",
                "sha256": "1da8b954f6f222c3c782bc285586ea8dd9d7e55e1bc7861da9cd772bca671660"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39ccdc846e3beb3e7301d88d798cc4d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 22678300,
            "upload_time": "2023-05-23T23:15:05",
            "upload_time_iso_8601": "2023-05-23T23:15:05.029882Z",
            "url": "https://files.pythonhosted.org/packages/8a/61/623b99b4738c27f4e4f5e5f255216a646e7e6e9cd5e22b108dfca8095dfc/Fiona-1.9.4.post1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e40b2830d90c80254dc6fefeb066bd4cbcd305a5058e79cf3fade5706184ea2",
                "md5": "809d5525210c026cce817b7724be5415",
                "sha256": "c671d8832287cda397621d79c5a635d52e4631f33a8f0e6fdc732a79a93cb96c"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "809d5525210c026cce817b7724be5415",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 18599179,
            "upload_time": "2023-05-23T23:15:13",
            "upload_time_iso_8601": "2023-05-23T23:15:13.513846Z",
            "url": "https://files.pythonhosted.org/packages/6e/40/b2830d90c80254dc6fefeb066bd4cbcd305a5058e79cf3fade5706184ea2/Fiona-1.9.4.post1-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeabb6a89cde242f7333c9bdaa314ac73e2ecd9248bc5b1c014323d700289a91",
                "md5": "40f71b6e4dc917a065acc27702de4f5d",
                "sha256": "b633a2e550e083805c638d2ab8059c283ca112aaea8241e170c012d2ee0aa905"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40f71b6e4dc917a065acc27702de4f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14816619,
            "upload_time": "2023-05-23T23:15:17",
            "upload_time_iso_8601": "2023-05-23T23:15:17.673872Z",
            "url": "https://files.pythonhosted.org/packages/ae/ab/b6a89cde242f7333c9bdaa314ac73e2ecd9248bc5b1c014323d700289a91/Fiona-1.9.4.post1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4356915f3e4c0016f5917d65f70097e1080f1f5341f3cd2d48d9738c2465fffa",
                "md5": "7b756ea6f927464472443b850a9e7a3b",
                "sha256": "c1faa625d5202b8403471bbc9f9c96b1bf9099cfcb0ee02a80a3641d3d02383e"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b756ea6f927464472443b850a9e7a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 16402490,
            "upload_time": "2023-05-23T23:15:25",
            "upload_time_iso_8601": "2023-05-23T23:15:25.679393Z",
            "url": "https://files.pythonhosted.org/packages/43/56/915f3e4c0016f5917d65f70097e1080f1f5341f3cd2d48d9738c2465fffa/Fiona-1.9.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b07f2de46a2630f609b7520d74ffc7692d4969b1fa1dd3c82f62c7967183d365",
                "md5": "b404feb9c7f392567df658d372599680",
                "sha256": "39baf11ff0e4318397e2b2197de427b4eebdc49d4a9a7c1366f8a7ed682978a4"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b404feb9c7f392567df658d372599680",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 22666957,
            "upload_time": "2023-05-23T23:15:31",
            "upload_time_iso_8601": "2023-05-23T23:15:31.246947Z",
            "url": "https://files.pythonhosted.org/packages/b0/7f/2de46a2630f609b7520d74ffc7692d4969b1fa1dd3c82f62c7967183d365/Fiona-1.9.4.post1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db877d5cf9c6c848745f7b4477eb32e6cd629d378ab7f104789d40b37e83a85a",
                "md5": "89e7b30b36a6ed075c3b60401b627e51",
                "sha256": "d93c993265f6378b23f47708c83bddb3377ca6814a1f0b5a0ae0bee9c8d72cf8"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89e7b30b36a6ed075c3b60401b627e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 18614475,
            "upload_time": "2023-05-23T23:15:39",
            "upload_time_iso_8601": "2023-05-23T23:15:39.673404Z",
            "url": "https://files.pythonhosted.org/packages/db/87/7d5cf9c6c848745f7b4477eb32e6cd629d378ab7f104789d40b37e83a85a/Fiona-1.9.4.post1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa0d0e13fe2104f5b248ec47eda7345afff763e25c724bb6705a43f4aa28ed96",
                "md5": "212426c86fc06db30d9534bf125b0512",
                "sha256": "b0387cae39e27f338fd948b3b50b6e6ce198cc4cec257fc91660849697c69dc3"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp37-cp37m-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "212426c86fc06db30d9534bf125b0512",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 16505324,
            "upload_time": "2023-05-23T23:15:44",
            "upload_time_iso_8601": "2023-05-23T23:15:44.563321Z",
            "url": "https://files.pythonhosted.org/packages/aa/0d/0e13fe2104f5b248ec47eda7345afff763e25c724bb6705a43f4aa28ed96/Fiona-1.9.4.post1-cp37-cp37m-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62b6ca195c42996dd7acb7557cdc8b2487d4889f74e853ef94332c88c2418d74",
                "md5": "2524e8cc7416e579b367096a93788622",
                "sha256": "450561d308d3ce7c7e30294822b1de3f4f942033b703ddd4a91a7f7f5f506ca0"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2524e8cc7416e579b367096a93788622",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 22698917,
            "upload_time": "2023-05-23T23:15:49",
            "upload_time_iso_8601": "2023-05-23T23:15:49.187442Z",
            "url": "https://files.pythonhosted.org/packages/62/b6/ca195c42996dd7acb7557cdc8b2487d4889f74e853ef94332c88c2418d74/Fiona-1.9.4.post1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "448064200180c8dacdeadc8192aa6349b3fe2d4051591427149cea97c0a5e744",
                "md5": "cba4cde6dd6b06b21b9d8f2c0e674597",
                "sha256": "71b023ef5248ebfa5524e7a875033f7db3bbfaf634b1b5c1ae36958d1eb82083"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cba4cde6dd6b06b21b9d8f2c0e674597",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 18634301,
            "upload_time": "2023-05-23T23:15:56",
            "upload_time_iso_8601": "2023-05-23T23:15:56.125061Z",
            "url": "https://files.pythonhosted.org/packages/44/80/64200180c8dacdeadc8192aa6349b3fe2d4051591427149cea97c0a5e744/Fiona-1.9.4.post1-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c08e9be7f11921d7e2f5dcfa748683094e17b5eef38701c5dd2916afd745da8c",
                "md5": "5dcb3160859ff98ccd700c97c04abeaf",
                "sha256": "74511d3755695d75cea0f4ff6f5e0c6c5d5be8e0d46dafff124c6a219e99b1eb"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5dcb3160859ff98ccd700c97c04abeaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14845695,
            "upload_time": "2023-05-23T23:16:04",
            "upload_time_iso_8601": "2023-05-23T23:16:04.767468Z",
            "url": "https://files.pythonhosted.org/packages/c0/8e/9be7f11921d7e2f5dcfa748683094e17b5eef38701c5dd2916afd745da8c/Fiona-1.9.4.post1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfd201dc88bef47c0966c2749e35a4ee554583c9c8eebd6e72c0ac9493b116c9",
                "md5": "f01da33749606a6c8616c830b0632a5c",
                "sha256": "285f3dd4f96aa0a3955ed469f0543375b20989731b2dddc85124453f11ac62bc"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f01da33749606a6c8616c830b0632a5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 16420327,
            "upload_time": "2023-05-23T23:16:12",
            "upload_time_iso_8601": "2023-05-23T23:16:12.687312Z",
            "url": "https://files.pythonhosted.org/packages/cf/d2/01dc88bef47c0966c2749e35a4ee554583c9c8eebd6e72c0ac9493b116c9/Fiona-1.9.4.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bea6f581dbc322f9bd7eeb397ca81444dcd0ba1c2aead5113f017be61de8919",
                "md5": "4e2789c296ac7a21727d212433cd479c",
                "sha256": "a670ea4262cb9140445bcfc97cbfd2f508a058be342f4a97e966b8ce7696601f"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e2789c296ac7a21727d212433cd479c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 22721676,
            "upload_time": "2023-05-23T23:16:22",
            "upload_time_iso_8601": "2023-05-23T23:16:22.063457Z",
            "url": "https://files.pythonhosted.org/packages/2b/ea/6f581dbc322f9bd7eeb397ca81444dcd0ba1c2aead5113f017be61de8919/Fiona-1.9.4.post1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7b36de5b6f5f01ee4c7951700a28eaed8c5ee5cc3516c12b1c258f927c0ad5e",
                "md5": "8a1ee0d1fb4b5916910e6d5b7f26bf11",
                "sha256": "ea7c44c15b3a653452b9b3173181490b7afc5f153b0473c145c43c0fbf90448b"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a1ee0d1fb4b5916910e6d5b7f26bf11",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 18637263,
            "upload_time": "2023-05-23T23:16:30",
            "upload_time_iso_8601": "2023-05-23T23:16:30.906442Z",
            "url": "https://files.pythonhosted.org/packages/c7/b3/6de5b6f5f01ee4c7951700a28eaed8c5ee5cc3516c12b1c258f927c0ad5e/Fiona-1.9.4.post1-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1dca1b2e2dc1278bc2cbdfd5a041a4882c6403e54adaebd95e76f3be4367703",
                "md5": "f8360cff31f84aaddb45c09352b29ab5",
                "sha256": "7bfb1f49e0e53f6cd7ad64ae809d72646266b37a7b9881205977408b443a8d79"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f8360cff31f84aaddb45c09352b29ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14847246,
            "upload_time": "2023-05-23T23:16:39",
            "upload_time_iso_8601": "2023-05-23T23:16:39.715764Z",
            "url": "https://files.pythonhosted.org/packages/b1/dc/a1b2e2dc1278bc2cbdfd5a041a4882c6403e54adaebd95e76f3be4367703/Fiona-1.9.4.post1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab514353865344a6ac32f7b8ed3f2363a4b1286d5c9e2b53ce3bb61982e3aaa8",
                "md5": "e06ee7bcda61cf7b6de053cf48fb3d47",
                "sha256": "1a585002a6385cc8ab0f66ddf3caf18711f531901906abd011a67a0cc89ab7b0"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e06ee7bcda61cf7b6de053cf48fb3d47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 16417023,
            "upload_time": "2023-05-23T23:16:49",
            "upload_time_iso_8601": "2023-05-23T23:16:49.617858Z",
            "url": "https://files.pythonhosted.org/packages/ab/51/4353865344a6ac32f7b8ed3f2363a4b1286d5c9e2b53ce3bb61982e3aaa8/Fiona-1.9.4.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92da8dd3d9e9061e90ebe7d173d47547e937a282a8a8d4a4a10c4e7193011536",
                "md5": "0045aac8f6906ef45cf3c96cf1845ff3",
                "sha256": "f5da66b723a876142937e683431bbaa5c3d81bb2ed3ec98941271bc99b7f8cd0"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0045aac8f6906ef45cf3c96cf1845ff3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 22692641,
            "upload_time": "2023-05-23T23:16:57",
            "upload_time_iso_8601": "2023-05-23T23:16:57.849549Z",
            "url": "https://files.pythonhosted.org/packages/92/da/8dd3d9e9061e90ebe7d173d47547e937a282a8a8d4a4a10c4e7193011536/Fiona-1.9.4.post1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bc01f49b9026e706304a5f214c0758c022cb91367b9b13d0d2cae19847d3c35",
                "md5": "09b6a97aacd0f736c69b95207b045237",
                "sha256": "5679d3f7e0d513035eb72e59527bb90486859af4405755dfc739138633106120"
            },
            "downloads": -1,
            "filename": "Fiona-1.9.4.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "09b6a97aacd0f736c69b95207b045237",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 924293,
            "upload_time": "2023-05-23T23:17:07",
            "upload_time_iso_8601": "2023-05-23T23:17:07.768612Z",
            "url": "https://files.pythonhosted.org/packages/3b/c0/1f49b9026e706304a5f214c0758c022cb91367b9b13d0d2cae19847d3c35/Fiona-1.9.4.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-23 23:17:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Toblerity",
    "github_project": "Fiona",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "attrs",
            "specs": [
                [
                    ">=",
                    "19.2.0"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    "~=",
                    "8.0"
                ]
            ]
        },
        {
            "name": "click-plugins",
            "specs": []
        },
        {
            "name": "cligj",
            "specs": [
                [
                    ">=",
                    "0.5.0"
                ]
            ]
        },
        {
            "name": "importlib-metadata",
            "specs": []
        },
        {
            "name": "munch",
            "specs": [
                [
                    ">=",
                    "2.3.2"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": []
        }
    ],
    "lcname": "fiona"
}
        
Elapsed time: 0.07237s