├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── rstcheck.yml │ ├── scorecard.yml │ ├── test_gdal_latest.yml │ └── tests.yml ├── .gitignore ├── .mailmap ├── .readthedocs.yaml ├── CHANGES.txt ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CREDITS.txt ├── Dockerfile ├── FAQ.rst ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── SECURITY.md ├── appveyor.yml ├── appveyor ├── install.ps1 └── run_with_env.cmd ├── ci ├── gdal-compile.sh └── rstcheck │ ├── requirements.in │ └── requirements.txt ├── docs ├── Makefile ├── README.rst ├── cli.rst ├── conf.py ├── encoding.txt ├── fiona.fio.rst ├── fiona.rst ├── img │ ├── concave.png │ ├── convex.png │ ├── simplified-buffer.png │ └── zones.png ├── index.rst ├── install.rst ├── manual.rst └── modules.rst ├── environment.yml ├── examples ├── open.py ├── orient-ccw.py ├── with-descartes-functional.py ├── with-descartes.py ├── with-pyproj.py └── with-shapely.py ├── fiona ├── __init__.py ├── _cpl.pxd ├── _crs.pyx ├── _csl.pxd ├── _env.pxd ├── _env.pyx ├── _err.pxd ├── _err.pyx ├── _geometry.pxd ├── _geometry.pyx ├── _path.py ├── _show_versions.py ├── _transform.pyx ├── _vendor │ ├── munch │ │ ├── LICENSE.txt │ │ └── __init__.py │ └── snuggs.py ├── _vsiopener.pxd ├── _vsiopener.pyx ├── abc.py ├── collection.py ├── compat.py ├── crs.pxd ├── crs.pyx ├── drvsupport.py ├── enums.py ├── env.py ├── errors.py ├── features.py ├── fio │ ├── __init__.py │ ├── bounds.py │ ├── calc.py │ ├── cat.py │ ├── collect.py │ ├── distrib.py │ ├── dump.py │ ├── env.py │ ├── features.py │ ├── helpers.py │ ├── info.py │ ├── insp.py │ ├── load.py │ ├── ls.py │ ├── main.py │ ├── options.py │ └── rm.py ├── gdal.pxi ├── inspector.py ├── io.py ├── logutils.py ├── meta.py ├── model.py ├── ogrext.pyx ├── ogrext1.pxd ├── ogrext2.pxd ├── ogrext3.pxd ├── path.py ├── rfc3339.py ├── schema.pyx ├── session.py ├── transform.py └── vfs.py ├── pyproject.toml ├── pytest.ini ├── requirements-ci.txt ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── check_deprecated.py └── check_urls.py ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── data ├── !test.geojson ├── LICENSE.txt ├── collection-pp.txt ├── collection.txt ├── coutwildrnp.cpg ├── coutwildrnp.dbf ├── coutwildrnp.prj ├── coutwildrnp.shp ├── coutwildrnp.shx ├── coutwildrnp.zip ├── curves_line.csv ├── example.topojson ├── gre.cpg ├── gre.dbf ├── gre.prj ├── gre.shp ├── gre.shx ├── grenada.geojson ├── issue627.geojson ├── multicurve.gml ├── multicurve.xsd ├── rmnp.geojson ├── sequence-pp.txt ├── sequence.txt ├── test_gpx.gpx ├── test_tin.csv ├── test_tin.dbf ├── test_tin.shp ├── test_tin.shx ├── test_tz.geojson ├── testopenfilegdb.gdb.zip ├── trio.geojson └── trio.seq ├── test__env.py ├── test__path.py ├── test_bigint.py ├── test_binary_field.py ├── test_bounds.py ├── test_bytescollection.py ├── test_collection.py ├── test_collection_crs.py ├── test_collection_legacy.py ├── test_compound_crs.py ├── test_crs.py ├── test_cursor_interruptions.py ├── test_curve_geometries.py ├── test_data_paths.py ├── test_datetime.py ├── test_driver_options.py ├── test_drivers.py ├── test_drvsupport.py ├── test_encoding.py ├── test_env.py ├── test_feature.py ├── test_features.py ├── test_fio_bounds.py ├── test_fio_calc.py ├── test_fio_cat.py ├── test_fio_collect.py ├── test_fio_distrib.py ├── test_fio_dump.py ├── test_fio_features.py ├── test_fio_filter.py ├── test_fio_info.py ├── test_fio_load.py ├── test_fio_ls.py ├── test_fio_rm.py ├── test_geojson.py ├── test_geometry.py ├── test_geopackage.py ├── test_http_session.py ├── test_integration.py ├── test_layer.py ├── test_listing.py ├── test_logutils.py ├── test_memoryfile.py ├── test_meta.py ├── test_model.py ├── test_multiconxn.py ├── test_non_counting_layer.py ├── test_open.py ├── test_profile.py ├── test_props.py ├── test_pyopener.py ├── test_read_drivers.py ├── test_remove.py ├── test_revolvingdoor.py ├── test_rfc3339.py ├── test_rfc64_tin.py ├── test_schema.py ├── test_schema_geom.py ├── test_session.py ├── test_slice.py ├── test_snuggs.py ├── test_subtypes.py ├── test_topojson.py ├── test_transactions.py ├── test_transform.py ├── test_unicode.py ├── test_version.py ├── test_vfs.py └── test_write.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = Cython.Coverage 3 | omit = *pxd 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rstcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.github/workflows/rstcheck.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test_gdal_latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.github/workflows/test_gdal_latest.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/Dockerfile -------------------------------------------------------------------------------- /FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/FAQ.rst -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /appveyor/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/appveyor/run_with_env.cmd -------------------------------------------------------------------------------- /ci/gdal-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/ci/gdal-compile.sh -------------------------------------------------------------------------------- /ci/rstcheck/requirements.in: -------------------------------------------------------------------------------- 1 | rstcheck[sphinx]==6.1.2 2 | -------------------------------------------------------------------------------- /ci/rstcheck/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/ci/rstcheck/requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/encoding.txt -------------------------------------------------------------------------------- /docs/fiona.fio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/fiona.fio.rst -------------------------------------------------------------------------------- /docs/fiona.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/fiona.rst -------------------------------------------------------------------------------- /docs/img/concave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/img/concave.png -------------------------------------------------------------------------------- /docs/img/convex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/img/convex.png -------------------------------------------------------------------------------- /docs/img/simplified-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/img/simplified-buffer.png -------------------------------------------------------------------------------- /docs/img/zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/img/zones.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/manual.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/open.py -------------------------------------------------------------------------------- /examples/orient-ccw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/orient-ccw.py -------------------------------------------------------------------------------- /examples/with-descartes-functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/with-descartes-functional.py -------------------------------------------------------------------------------- /examples/with-descartes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/with-descartes.py -------------------------------------------------------------------------------- /examples/with-pyproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/with-pyproj.py -------------------------------------------------------------------------------- /examples/with-shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/examples/with-shapely.py -------------------------------------------------------------------------------- /fiona/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/__init__.py -------------------------------------------------------------------------------- /fiona/_cpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_cpl.pxd -------------------------------------------------------------------------------- /fiona/_crs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_crs.pyx -------------------------------------------------------------------------------- /fiona/_csl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_csl.pxd -------------------------------------------------------------------------------- /fiona/_env.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_env.pxd -------------------------------------------------------------------------------- /fiona/_env.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_env.pyx -------------------------------------------------------------------------------- /fiona/_err.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_err.pxd -------------------------------------------------------------------------------- /fiona/_err.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_err.pyx -------------------------------------------------------------------------------- /fiona/_geometry.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_geometry.pxd -------------------------------------------------------------------------------- /fiona/_geometry.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_geometry.pyx -------------------------------------------------------------------------------- /fiona/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_path.py -------------------------------------------------------------------------------- /fiona/_show_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_show_versions.py -------------------------------------------------------------------------------- /fiona/_transform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_transform.pyx -------------------------------------------------------------------------------- /fiona/_vendor/munch/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_vendor/munch/LICENSE.txt -------------------------------------------------------------------------------- /fiona/_vendor/munch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_vendor/munch/__init__.py -------------------------------------------------------------------------------- /fiona/_vendor/snuggs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_vendor/snuggs.py -------------------------------------------------------------------------------- /fiona/_vsiopener.pxd: -------------------------------------------------------------------------------- 1 | include "gdal.pxi" 2 | -------------------------------------------------------------------------------- /fiona/_vsiopener.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/_vsiopener.pyx -------------------------------------------------------------------------------- /fiona/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/abc.py -------------------------------------------------------------------------------- /fiona/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/collection.py -------------------------------------------------------------------------------- /fiona/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/compat.py -------------------------------------------------------------------------------- /fiona/crs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/crs.pxd -------------------------------------------------------------------------------- /fiona/crs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/crs.pyx -------------------------------------------------------------------------------- /fiona/drvsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/drvsupport.py -------------------------------------------------------------------------------- /fiona/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/enums.py -------------------------------------------------------------------------------- /fiona/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/env.py -------------------------------------------------------------------------------- /fiona/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/errors.py -------------------------------------------------------------------------------- /fiona/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/features.py -------------------------------------------------------------------------------- /fiona/fio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/__init__.py -------------------------------------------------------------------------------- /fiona/fio/bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/bounds.py -------------------------------------------------------------------------------- /fiona/fio/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/calc.py -------------------------------------------------------------------------------- /fiona/fio/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/cat.py -------------------------------------------------------------------------------- /fiona/fio/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/collect.py -------------------------------------------------------------------------------- /fiona/fio/distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/distrib.py -------------------------------------------------------------------------------- /fiona/fio/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/dump.py -------------------------------------------------------------------------------- /fiona/fio/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/env.py -------------------------------------------------------------------------------- /fiona/fio/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/features.py -------------------------------------------------------------------------------- /fiona/fio/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/helpers.py -------------------------------------------------------------------------------- /fiona/fio/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/info.py -------------------------------------------------------------------------------- /fiona/fio/insp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/insp.py -------------------------------------------------------------------------------- /fiona/fio/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/load.py -------------------------------------------------------------------------------- /fiona/fio/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/ls.py -------------------------------------------------------------------------------- /fiona/fio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/main.py -------------------------------------------------------------------------------- /fiona/fio/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/options.py -------------------------------------------------------------------------------- /fiona/fio/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/fio/rm.py -------------------------------------------------------------------------------- /fiona/gdal.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/gdal.pxi -------------------------------------------------------------------------------- /fiona/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/inspector.py -------------------------------------------------------------------------------- /fiona/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/io.py -------------------------------------------------------------------------------- /fiona/logutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/logutils.py -------------------------------------------------------------------------------- /fiona/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/meta.py -------------------------------------------------------------------------------- /fiona/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/model.py -------------------------------------------------------------------------------- /fiona/ogrext.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/ogrext.pyx -------------------------------------------------------------------------------- /fiona/ogrext1.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/ogrext1.pxd -------------------------------------------------------------------------------- /fiona/ogrext2.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/ogrext2.pxd -------------------------------------------------------------------------------- /fiona/ogrext3.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/ogrext3.pxd -------------------------------------------------------------------------------- /fiona/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/path.py -------------------------------------------------------------------------------- /fiona/rfc3339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/rfc3339.py -------------------------------------------------------------------------------- /fiona/schema.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/schema.pyx -------------------------------------------------------------------------------- /fiona/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/session.py -------------------------------------------------------------------------------- /fiona/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/transform.py -------------------------------------------------------------------------------- /fiona/vfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/fiona/vfs.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- 1 | coveralls 2 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/check_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/scripts/check_deprecated.py -------------------------------------------------------------------------------- /scripts/check_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/scripts/check_urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Fiona's test package. Do not delete!""" 2 | 3 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/!test.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/!test.geojson -------------------------------------------------------------------------------- /tests/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/LICENSE.txt -------------------------------------------------------------------------------- /tests/data/collection-pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/collection-pp.txt -------------------------------------------------------------------------------- /tests/data/collection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/collection.txt -------------------------------------------------------------------------------- /tests/data/coutwildrnp.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 2 | -------------------------------------------------------------------------------- /tests/data/coutwildrnp.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/coutwildrnp.dbf -------------------------------------------------------------------------------- /tests/data/coutwildrnp.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/coutwildrnp.prj -------------------------------------------------------------------------------- /tests/data/coutwildrnp.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/coutwildrnp.shp -------------------------------------------------------------------------------- /tests/data/coutwildrnp.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/coutwildrnp.shx -------------------------------------------------------------------------------- /tests/data/coutwildrnp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/coutwildrnp.zip -------------------------------------------------------------------------------- /tests/data/curves_line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/curves_line.csv -------------------------------------------------------------------------------- /tests/data/example.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/example.topojson -------------------------------------------------------------------------------- /tests/data/gre.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 2 | -------------------------------------------------------------------------------- /tests/data/gre.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/gre.dbf -------------------------------------------------------------------------------- /tests/data/gre.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/gre.prj -------------------------------------------------------------------------------- /tests/data/gre.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/gre.shp -------------------------------------------------------------------------------- /tests/data/gre.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/gre.shx -------------------------------------------------------------------------------- /tests/data/grenada.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/grenada.geojson -------------------------------------------------------------------------------- /tests/data/issue627.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/issue627.geojson -------------------------------------------------------------------------------- /tests/data/multicurve.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/multicurve.gml -------------------------------------------------------------------------------- /tests/data/multicurve.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/multicurve.xsd -------------------------------------------------------------------------------- /tests/data/rmnp.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/rmnp.geojson -------------------------------------------------------------------------------- /tests/data/sequence-pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/sequence-pp.txt -------------------------------------------------------------------------------- /tests/data/sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/sequence.txt -------------------------------------------------------------------------------- /tests/data/test_gpx.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_gpx.gpx -------------------------------------------------------------------------------- /tests/data/test_tin.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_tin.csv -------------------------------------------------------------------------------- /tests/data/test_tin.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_tin.dbf -------------------------------------------------------------------------------- /tests/data/test_tin.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_tin.shp -------------------------------------------------------------------------------- /tests/data/test_tin.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_tin.shx -------------------------------------------------------------------------------- /tests/data/test_tz.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/test_tz.geojson -------------------------------------------------------------------------------- /tests/data/testopenfilegdb.gdb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/testopenfilegdb.gdb.zip -------------------------------------------------------------------------------- /tests/data/trio.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/trio.geojson -------------------------------------------------------------------------------- /tests/data/trio.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/data/trio.seq -------------------------------------------------------------------------------- /tests/test__env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test__env.py -------------------------------------------------------------------------------- /tests/test__path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test__path.py -------------------------------------------------------------------------------- /tests/test_bigint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_bigint.py -------------------------------------------------------------------------------- /tests/test_binary_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_binary_field.py -------------------------------------------------------------------------------- /tests/test_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_bounds.py -------------------------------------------------------------------------------- /tests/test_bytescollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_bytescollection.py -------------------------------------------------------------------------------- /tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_collection.py -------------------------------------------------------------------------------- /tests/test_collection_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_collection_crs.py -------------------------------------------------------------------------------- /tests/test_collection_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_collection_legacy.py -------------------------------------------------------------------------------- /tests/test_compound_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_compound_crs.py -------------------------------------------------------------------------------- /tests/test_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_crs.py -------------------------------------------------------------------------------- /tests/test_cursor_interruptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_cursor_interruptions.py -------------------------------------------------------------------------------- /tests/test_curve_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_curve_geometries.py -------------------------------------------------------------------------------- /tests/test_data_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_data_paths.py -------------------------------------------------------------------------------- /tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_datetime.py -------------------------------------------------------------------------------- /tests/test_driver_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_driver_options.py -------------------------------------------------------------------------------- /tests/test_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_drivers.py -------------------------------------------------------------------------------- /tests/test_drvsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_drvsupport.py -------------------------------------------------------------------------------- /tests/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_encoding.py -------------------------------------------------------------------------------- /tests/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_env.py -------------------------------------------------------------------------------- /tests/test_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_feature.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_fio_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_bounds.py -------------------------------------------------------------------------------- /tests/test_fio_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_calc.py -------------------------------------------------------------------------------- /tests/test_fio_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_cat.py -------------------------------------------------------------------------------- /tests/test_fio_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_collect.py -------------------------------------------------------------------------------- /tests/test_fio_distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_distrib.py -------------------------------------------------------------------------------- /tests/test_fio_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_dump.py -------------------------------------------------------------------------------- /tests/test_fio_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_features.py -------------------------------------------------------------------------------- /tests/test_fio_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_filter.py -------------------------------------------------------------------------------- /tests/test_fio_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_info.py -------------------------------------------------------------------------------- /tests/test_fio_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_load.py -------------------------------------------------------------------------------- /tests/test_fio_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_ls.py -------------------------------------------------------------------------------- /tests/test_fio_rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_fio_rm.py -------------------------------------------------------------------------------- /tests/test_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_geojson.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_geopackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_geopackage.py -------------------------------------------------------------------------------- /tests/test_http_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_http_session.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_layer.py -------------------------------------------------------------------------------- /tests/test_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_listing.py -------------------------------------------------------------------------------- /tests/test_logutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_logutils.py -------------------------------------------------------------------------------- /tests/test_memoryfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_memoryfile.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_multiconxn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_multiconxn.py -------------------------------------------------------------------------------- /tests/test_non_counting_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_non_counting_layer.py -------------------------------------------------------------------------------- /tests/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_open.py -------------------------------------------------------------------------------- /tests/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_profile.py -------------------------------------------------------------------------------- /tests/test_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_props.py -------------------------------------------------------------------------------- /tests/test_pyopener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_pyopener.py -------------------------------------------------------------------------------- /tests/test_read_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_read_drivers.py -------------------------------------------------------------------------------- /tests/test_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_remove.py -------------------------------------------------------------------------------- /tests/test_revolvingdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_revolvingdoor.py -------------------------------------------------------------------------------- /tests/test_rfc3339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_rfc3339.py -------------------------------------------------------------------------------- /tests/test_rfc64_tin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_rfc64_tin.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_schema.py -------------------------------------------------------------------------------- /tests/test_schema_geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_schema_geom.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_slice.py -------------------------------------------------------------------------------- /tests/test_snuggs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_snuggs.py -------------------------------------------------------------------------------- /tests/test_subtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_subtypes.py -------------------------------------------------------------------------------- /tests/test_topojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_topojson.py -------------------------------------------------------------------------------- /tests/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_transactions.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_unicode.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_vfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_vfs.py -------------------------------------------------------------------------------- /tests/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toblerity/Fiona/HEAD/tests/test_write.py --------------------------------------------------------------------------------