├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── containers.yml │ ├── docs.yml │ ├── flake8.yml │ ├── main.yml │ ├── stale.yml │ └── vulnerabilities.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .trivyignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── babel-mapping.ini ├── docker ├── README.md ├── default.config.yml └── entrypoint.sh ├── docs ├── Makefile ├── requirements.txt └── source │ ├── _static │ ├── README.md │ ├── favicon.ico │ ├── how-pygeoapi-works.png │ ├── intro_page_pygeoapi.png │ ├── openapi_admin.png │ ├── openapi_get_collection.png │ ├── openapi_get_collection_result.png │ ├── openapi_get_collections.png │ ├── openapi_get_collections_result.png │ ├── openapi_get_item.png │ ├── openapi_get_item_id.png │ ├── openapi_get_item_id2.png │ ├── openapi_intro_page.png │ └── pygeoapi-logo.png │ ├── _templates │ └── indexsidebar.html │ ├── admin-api.rst │ ├── administration.rst │ ├── api-documentation.rst │ ├── conf.py │ ├── configuration.rst │ ├── contributing.rst │ ├── cql.rst │ ├── crs.rst │ ├── development.rst │ ├── further-reading.rst │ ├── how-pygeoapi-works.rst │ ├── html-templating.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── language.rst │ ├── license.rst │ ├── ogc-compliance.rst │ ├── openapi.rst │ ├── plugins.rst │ ├── publishing │ ├── index.rst │ ├── ogcapi-coverages.rst │ ├── ogcapi-edr.rst │ ├── ogcapi-features.rst │ ├── ogcapi-maps.rst │ ├── ogcapi-processes.rst │ ├── ogcapi-records.rst │ ├── ogcapi-tiles.rst │ └── stac.rst │ ├── running-with-docker.rst │ ├── running.rst │ ├── security.rst │ ├── support.rst │ ├── tour.rst │ └── transactions.rst ├── locale ├── README.md ├── ar │ └── LC_MESSAGES │ │ └── messages.po ├── bs │ └── LC_MESSAGES │ │ └── messages.po ├── de │ └── LC_MESSAGES │ │ └── messages.po ├── en │ └── LC_MESSAGES │ │ └── messages.po ├── es │ └── LC_MESSAGES │ │ └── messages.po ├── fr │ └── LC_MESSAGES │ │ └── messages.po ├── pt_BR │ └── LC_MESSAGES │ │ └── messages.po ├── ru │ └── LC_MESSAGES │ │ └── messages.po └── sr │ └── LC_MESSAGES │ └── messages.po ├── pygeoapi-config.yml ├── pygeoapi ├── __init__.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── coverages.py │ ├── environmental_data_retrieval.py │ ├── itemtypes.py │ ├── maps.py │ ├── processes.py │ ├── stac.py │ └── tiles.py ├── config.py ├── crs.py ├── django_ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── django_app.py ├── error.py ├── flask_app.py ├── formatter │ ├── __init__.py │ ├── base.py │ └── csv_.py ├── l10n.py ├── linked_data.py ├── log.py ├── models │ ├── __init__.py │ ├── config.py │ ├── openapi.py │ └── provider │ │ ├── __init__.py │ │ ├── base.py │ │ └── mvt.py ├── openapi.py ├── plugin.py ├── process │ ├── __init__.py │ ├── base.py │ ├── echo.py │ ├── hello_world.py │ ├── manager │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dummy.py │ │ ├── mongodb_.py │ │ ├── postgresql.py │ │ └── tinydb_.py │ └── shapely_functions.py ├── provider │ ├── __init__.py │ ├── azure_.py │ ├── base.py │ ├── base_edr.py │ ├── base_mvt.py │ ├── csv_.py │ ├── csw_facade.py │ ├── elasticsearch_.py │ ├── erddap.py │ ├── esri.py │ ├── filesystem.py │ ├── geojson.py │ ├── hateoas.py │ ├── mapscript_.py │ ├── mongo.py │ ├── mvt_elastic.py │ ├── mvt_postgresql.py │ ├── mvt_proxy.py │ ├── mvt_tippecanoe.py │ ├── ogr.py │ ├── opensearch_.py │ ├── oracle.py │ ├── parquet.py │ ├── rasterio_.py │ ├── sensorthings.py │ ├── sensorthings_edr.py │ ├── socrata.py │ ├── sql.py │ ├── sqlite.py │ ├── tile.py │ ├── tinydb_.py │ ├── wms_facade.py │ ├── wmts_facade.py │ ├── xarray_.py │ └── xarray_edr.py ├── resources │ ├── definitions │ │ └── tiles │ │ │ ├── WebMercatorQuad.json │ │ │ └── WorldCRS84Quad.json │ └── schemas │ │ ├── config │ │ └── pygeoapi-config-0.x.yml │ │ └── openapi │ │ └── openapi-3.0.x.json ├── starlette_app.py ├── static │ ├── css │ │ └── default.css │ └── img │ │ ├── favicon.ico │ │ ├── logo.png │ │ └── pygeoapi.png ├── templates │ ├── _base.html │ ├── admin │ │ └── index.html │ ├── collections │ │ ├── collection.html │ │ ├── edr │ │ │ ├── instance.html │ │ │ ├── instances.html │ │ │ └── query.html │ │ ├── index.html │ │ ├── items │ │ │ ├── index.html │ │ │ ├── index.jsonld │ │ │ ├── item.html │ │ │ └── item.jsonld │ │ ├── map │ │ │ └── metadata.html │ │ ├── queryables.html │ │ ├── schema.html │ │ └── tiles │ │ │ ├── index.html │ │ │ └── metadata.html │ ├── conformance.html │ ├── exception.html │ ├── jobs │ │ ├── index.html │ │ ├── job.html │ │ └── results │ │ │ └── index.html │ ├── landing_page.html │ ├── openapi │ │ ├── redoc.html │ │ └── swagger.html │ ├── processes │ │ ├── index.html │ │ └── process.html │ ├── stac │ │ ├── catalog.html │ │ ├── collection.html │ │ ├── collection_base.html │ │ └── item.html │ └── tilematrixsets │ │ ├── index.html │ │ └── tilematrixset.html └── util.py ├── pyproject.toml ├── pytest.ini ├── requirements-admin.txt ├── requirements-dev.txt ├── requirements-django.txt ├── requirements-docker.txt ├── requirements-manager.txt ├── requirements-provider.txt ├── requirements-starlette.txt ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── api ├── test_admin.py ├── test_admin_live.py ├── test_api.py ├── test_coverages.py ├── test_environmental_data_retrieval.py ├── test_itemtypes.py ├── test_maps.py ├── test_processes.py ├── test_stac.py └── test_tiles.py ├── cite ├── README.md ├── cite.config.yml └── cite.env ├── conftest.py ├── data ├── CMC_glb_NSWRS_SFC_0_latlon.15x.15_2020041100_P000.grib2 ├── CMC_glb_PTYPE_SFC_0_latlon.15x.15_2020041100_P000.grib2 ├── CMC_glb_TMP_TGL_2_latlon.15x.15_2020081000_P000.grib2 ├── CMC_hrdps_continental_TMP_TGL_80_ps2.5km_2020102700_P005-00.grib2 ├── CMIP5_rcp8.5_annual_abs_latlon1x1_PCP_pctl25_P1Y.nc ├── README.md ├── admin │ ├── admin-patch.json │ ├── admin-put.json │ ├── resource-patch.json │ ├── resource-post.json │ └── resource-put.json ├── analysed_sst.zarr │ ├── .zattrs │ ├── .zgroup │ ├── analysed_sst │ │ ├── .zarray │ │ ├── .zattrs │ │ └── 0.0.0 │ ├── analysis_error │ │ ├── .zarray │ │ ├── .zattrs │ │ └── 0.0.0 │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── mask │ │ ├── .zarray │ │ ├── .zattrs │ │ └── 0.0.0 │ ├── sea_ice_fraction │ │ ├── .zarray │ │ ├── .zattrs │ │ └── 0.0.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── canada-hydat-daily-mean-02HC003.tinydb ├── coads_sst.nc ├── dummy_data.sql ├── dummy_types_data.sql ├── dutch_addresses_28992.gpkg ├── dutch_addresses_4326.gpkg ├── dutch_addresses_4326.sqlite ├── dutch_addresses_shape_28992.zip ├── dutch_addresses_shape_4326 │ ├── inspireadressen.dbf │ ├── inspireadressen.prj │ ├── inspireadressen.shp │ └── inspireadressen.shx ├── hotosm_bdi_waterways.sql.gz ├── items.geojson ├── mysql_data.sql ├── ne_110m_admin_0_countries.sqlite ├── ne_110m_lakes.geojson ├── ne_110m_populated_places_simple.geojson ├── norwegian_urban_areas.csv ├── obs.csv ├── obs_malformatted.csv ├── open.canada.ca │ ├── 07b7ef80-6061-43fc-b874-e2800e9ae547.xml │ ├── 1687cac6-ee13-4866-ab8a-114c2ede7b13.xml │ ├── 4e81a467-fc14-4fa0-a1d6-9d65336587c6.xml │ ├── 63a40754-28a0-4fdc-8e6e-c56854e16dec.xml │ ├── 64e70d29-57a3-44a8-b55c-d465639d1e2e.xml │ ├── 8a09413a-0a01-4aab-8925-720d987deb20.xml │ ├── 8a74fdb2-ac39-499f-9db2-4c74411d6387.xml │ ├── caeb0592-8c95-4461-b9a5-5fde7f2ccbb3.xml │ ├── d3028ad0-b0d0-47ff-bcc3-d383881e17cd.xml │ ├── e5a71860-827c-453f-990e-0e0ba0ee67bb.xml │ ├── nhsl_hazard_threat_all_indicators_s_bc.geojson │ └── sample-records.tinydb ├── oracle │ └── init-db │ │ └── 01-create-user.sql ├── poi_portugal.gpkg ├── postgres_manager_full_structure.backup.sql ├── random.parquet ├── random_nocrs.parquet ├── random_nogeom.parquet ├── station_list.csv └── tiles │ └── ne_110m_lakes │ ├── 0 │ └── 0 │ │ └── 0.pbf │ ├── 1 │ ├── 0 │ │ ├── 0.pbf │ │ └── 1.pbf │ └── 1 │ │ ├── 0.pbf │ │ └── 1.pbf │ ├── 2 │ ├── 0 │ │ ├── 0.pbf │ │ └── 1.pbf │ ├── 1 │ │ ├── 1.pbf │ │ └── 2.pbf │ ├── 2 │ │ ├── 1.pbf │ │ └── 2.pbf │ └── 3 │ │ └── 1.pbf │ ├── 3 │ ├── 1 │ │ ├── 1.pbf │ │ ├── 2.pbf │ │ └── 3.pbf │ ├── 2 │ │ ├── 2.pbf │ │ ├── 3.pbf │ │ └── 4.pbf │ ├── 4 │ │ ├── 2.pbf │ │ ├── 3.pbf │ │ └── 4.pbf │ ├── 5 │ │ └── 2.pbf │ └── 6 │ │ └── 2.pbf │ ├── 4 │ ├── 2 │ │ ├── 3.pbf │ │ ├── 4.pbf │ │ ├── 5.pbf │ │ └── 6.pbf │ ├── 3 │ │ ├── 4.pbf │ │ ├── 5.pbf │ │ └── 6.pbf │ ├── 4 │ │ ├── 5.pbf │ │ ├── 6.pbf │ │ ├── 7.pbf │ │ └── 8.pbf │ ├── 8 │ │ └── 4.pbf │ ├── 9 │ │ ├── 4.pbf │ │ ├── 7.pbf │ │ └── 8.pbf │ ├── 10 │ │ └── 5.pbf │ ├── 11 │ │ └── 5.pbf │ └── 12 │ │ ├── 4.pbf │ │ └── 5.pbf │ ├── 5 │ ├── 4 │ │ └── 8.pbf │ ├── 5 │ │ ├── 11.pbf │ │ ├── 12.pbf │ │ ├── 7.pbf │ │ ├── 8.pbf │ │ └── 9.pbf │ ├── 6 │ │ ├── 11.pbf │ │ ├── 12.pbf │ │ ├── 8.pbf │ │ └── 9.pbf │ ├── 7 │ │ ├── 10.pbf │ │ └── 11.pbf │ ├── 8 │ │ ├── 10.pbf │ │ ├── 11.pbf │ │ ├── 13.pbf │ │ ├── 14.pbf │ │ └── 15.pbf │ ├── 9 │ │ ├── 11.pbf │ │ └── 17.pbf │ ├── 17 │ │ └── 9.pbf │ ├── 18 │ │ ├── 15.pbf │ │ ├── 16.pbf │ │ ├── 8.pbf │ │ └── 9.pbf │ ├── 19 │ │ ├── 14.pbf │ │ ├── 15.pbf │ │ ├── 16.pbf │ │ ├── 17.pbf │ │ ├── 8.pbf │ │ └── 9.pbf │ ├── 21 │ │ └── 11.pbf │ ├── 22 │ │ └── 11.pbf │ ├── 23 │ │ └── 11.pbf │ └── 25 │ │ ├── 10.pbf │ │ └── 9.pbf │ └── metadata.json ├── formatter ├── __init__.py └── test_csv__formatter.py ├── load_es_data.py ├── load_mongo_data.py ├── load_opensearch_data.py ├── load_oracle_data.py ├── load_tinydb_records.py ├── manager ├── __init__.py ├── test_manager.py ├── test_postgresql_manager.py └── test_tinydb_manager_for_parallel_requests.py ├── other ├── __init__.py ├── test_config.py ├── test_crs.py ├── test_django.py ├── test_l10n.py ├── test_linked_data.py ├── test_ogr_capabilities.py ├── test_openapi.py └── test_util.py ├── provider ├── __init__.py ├── test_api_ogr_provider.py ├── test_base_provider.py ├── test_csv__provider.py ├── test_csw_provider.py ├── test_elasticsearch__provider.py ├── test_esri_provider.py ├── test_filesystem_provider.py ├── test_geojson_provider.py ├── test_mongo_provider.py ├── test_mysql_provider.py ├── test_ogr_csv_provider.py ├── test_ogr_esrijson_provider.py ├── test_ogr_gpkg_provider.py ├── test_ogr_shapefile_provider.py ├── test_ogr_sqlite_provider.py ├── test_ogr_wfs_provider.py ├── test_ogr_wfs_provider_live.py ├── test_opensearch__provider.py ├── test_oracle_provider.py ├── test_parquet_provider.py ├── test_postgresql_mvt_provider.py ├── test_postgresql_provider.py ├── test_rasterio_provider.py ├── test_sensorthings_edr_provider.py ├── test_sensorthings_provider.py ├── test_socrata_provider.py ├── test_socrata_provider_live.py ├── test_sqlite_geopackage_provider.py ├── test_tinydb_catalogue_provider.py ├── test_tinydb_provider.py ├── test_xarray_netcdf_provider.py └── test_xarray_zarr_provider.py ├── pygeoapi-test-config-admin.yml ├── pygeoapi-test-config-apirules.yml ├── pygeoapi-test-config-enclosure.yml ├── pygeoapi-test-config-envvars.yml ├── pygeoapi-test-config-hidden-resources.yml ├── pygeoapi-test-config-ogr.yml ├── pygeoapi-test-config-postgresql-manager.yml ├── pygeoapi-test-config-postgresql.yml ├── pygeoapi-test-config.yml ├── pygeoapi-test-openapi.yml ├── pygeoapi-test-stac-api-config.yml ├── test_models.py └── util.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/containers.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/vulnerabilities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.github/workflows/vulnerabilities.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- 1 | # Accept the risk 2 | DS002 # Dockerfile with non-root user 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel-mapping.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/babel-mapping.ini -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/default.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docker/default.config.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/README.md -------------------------------------------------------------------------------- /docs/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/favicon.ico -------------------------------------------------------------------------------- /docs/source/_static/how-pygeoapi-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/how-pygeoapi-works.png -------------------------------------------------------------------------------- /docs/source/_static/intro_page_pygeoapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/intro_page_pygeoapi.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_admin.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_collection.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_collection_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_collection_result.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_collections.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_collections_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_collections_result.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_item.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_item_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_item_id.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_get_item_id2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_get_item_id2.png -------------------------------------------------------------------------------- /docs/source/_static/openapi_intro_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/openapi_intro_page.png -------------------------------------------------------------------------------- /docs/source/_static/pygeoapi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_static/pygeoapi-logo.png -------------------------------------------------------------------------------- /docs/source/_templates/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/_templates/indexsidebar.html -------------------------------------------------------------------------------- /docs/source/admin-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/admin-api.rst -------------------------------------------------------------------------------- /docs/source/administration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/administration.rst -------------------------------------------------------------------------------- /docs/source/api-documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/api-documentation.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/cql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/cql.rst -------------------------------------------------------------------------------- /docs/source/crs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/crs.rst -------------------------------------------------------------------------------- /docs/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/development.rst -------------------------------------------------------------------------------- /docs/source/further-reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/further-reading.rst -------------------------------------------------------------------------------- /docs/source/how-pygeoapi-works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/how-pygeoapi-works.rst -------------------------------------------------------------------------------- /docs/source/html-templating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/html-templating.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/language.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/ogc-compliance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/ogc-compliance.rst -------------------------------------------------------------------------------- /docs/source/openapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/openapi.rst -------------------------------------------------------------------------------- /docs/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/plugins.rst -------------------------------------------------------------------------------- /docs/source/publishing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/index.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-coverages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-coverages.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-edr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-edr.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-features.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-maps.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-processes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-processes.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-records.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-records.rst -------------------------------------------------------------------------------- /docs/source/publishing/ogcapi-tiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/ogcapi-tiles.rst -------------------------------------------------------------------------------- /docs/source/publishing/stac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/publishing/stac.rst -------------------------------------------------------------------------------- /docs/source/running-with-docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/running-with-docker.rst -------------------------------------------------------------------------------- /docs/source/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/running.rst -------------------------------------------------------------------------------- /docs/source/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/security.rst -------------------------------------------------------------------------------- /docs/source/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/support.rst -------------------------------------------------------------------------------- /docs/source/tour.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/tour.rst -------------------------------------------------------------------------------- /docs/source/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/docs/source/transactions.rst -------------------------------------------------------------------------------- /locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/README.md -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/ar/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bs/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/bs/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/de/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/pt_BR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/locale/sr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /pygeoapi-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi-config.yml -------------------------------------------------------------------------------- /pygeoapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/__init__.py -------------------------------------------------------------------------------- /pygeoapi/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/__init__.py -------------------------------------------------------------------------------- /pygeoapi/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/admin.py -------------------------------------------------------------------------------- /pygeoapi/api/coverages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/coverages.py -------------------------------------------------------------------------------- /pygeoapi/api/environmental_data_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/environmental_data_retrieval.py -------------------------------------------------------------------------------- /pygeoapi/api/itemtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/itemtypes.py -------------------------------------------------------------------------------- /pygeoapi/api/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/maps.py -------------------------------------------------------------------------------- /pygeoapi/api/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/processes.py -------------------------------------------------------------------------------- /pygeoapi/api/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/stac.py -------------------------------------------------------------------------------- /pygeoapi/api/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/api/tiles.py -------------------------------------------------------------------------------- /pygeoapi/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/config.py -------------------------------------------------------------------------------- /pygeoapi/crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/crs.py -------------------------------------------------------------------------------- /pygeoapi/django_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_/__init__.py -------------------------------------------------------------------------------- /pygeoapi/django_/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_/settings.py -------------------------------------------------------------------------------- /pygeoapi/django_/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_/urls.py -------------------------------------------------------------------------------- /pygeoapi/django_/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_/views.py -------------------------------------------------------------------------------- /pygeoapi/django_/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_/wsgi.py -------------------------------------------------------------------------------- /pygeoapi/django_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/django_app.py -------------------------------------------------------------------------------- /pygeoapi/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/error.py -------------------------------------------------------------------------------- /pygeoapi/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/flask_app.py -------------------------------------------------------------------------------- /pygeoapi/formatter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/formatter/__init__.py -------------------------------------------------------------------------------- /pygeoapi/formatter/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/formatter/base.py -------------------------------------------------------------------------------- /pygeoapi/formatter/csv_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/formatter/csv_.py -------------------------------------------------------------------------------- /pygeoapi/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/l10n.py -------------------------------------------------------------------------------- /pygeoapi/linked_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/linked_data.py -------------------------------------------------------------------------------- /pygeoapi/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/log.py -------------------------------------------------------------------------------- /pygeoapi/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/__init__.py -------------------------------------------------------------------------------- /pygeoapi/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/config.py -------------------------------------------------------------------------------- /pygeoapi/models/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/openapi.py -------------------------------------------------------------------------------- /pygeoapi/models/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/provider/__init__.py -------------------------------------------------------------------------------- /pygeoapi/models/provider/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/provider/base.py -------------------------------------------------------------------------------- /pygeoapi/models/provider/mvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/models/provider/mvt.py -------------------------------------------------------------------------------- /pygeoapi/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/openapi.py -------------------------------------------------------------------------------- /pygeoapi/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/plugin.py -------------------------------------------------------------------------------- /pygeoapi/process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/__init__.py -------------------------------------------------------------------------------- /pygeoapi/process/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/base.py -------------------------------------------------------------------------------- /pygeoapi/process/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/echo.py -------------------------------------------------------------------------------- /pygeoapi/process/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/hello_world.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/__init__.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/base.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/dummy.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/mongodb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/mongodb_.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/postgresql.py -------------------------------------------------------------------------------- /pygeoapi/process/manager/tinydb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/manager/tinydb_.py -------------------------------------------------------------------------------- /pygeoapi/process/shapely_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/process/shapely_functions.py -------------------------------------------------------------------------------- /pygeoapi/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/__init__.py -------------------------------------------------------------------------------- /pygeoapi/provider/azure_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/azure_.py -------------------------------------------------------------------------------- /pygeoapi/provider/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/base.py -------------------------------------------------------------------------------- /pygeoapi/provider/base_edr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/base_edr.py -------------------------------------------------------------------------------- /pygeoapi/provider/base_mvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/base_mvt.py -------------------------------------------------------------------------------- /pygeoapi/provider/csv_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/csv_.py -------------------------------------------------------------------------------- /pygeoapi/provider/csw_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/csw_facade.py -------------------------------------------------------------------------------- /pygeoapi/provider/elasticsearch_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/elasticsearch_.py -------------------------------------------------------------------------------- /pygeoapi/provider/erddap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/erddap.py -------------------------------------------------------------------------------- /pygeoapi/provider/esri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/esri.py -------------------------------------------------------------------------------- /pygeoapi/provider/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/filesystem.py -------------------------------------------------------------------------------- /pygeoapi/provider/geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/geojson.py -------------------------------------------------------------------------------- /pygeoapi/provider/hateoas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/hateoas.py -------------------------------------------------------------------------------- /pygeoapi/provider/mapscript_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mapscript_.py -------------------------------------------------------------------------------- /pygeoapi/provider/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mongo.py -------------------------------------------------------------------------------- /pygeoapi/provider/mvt_elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mvt_elastic.py -------------------------------------------------------------------------------- /pygeoapi/provider/mvt_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mvt_postgresql.py -------------------------------------------------------------------------------- /pygeoapi/provider/mvt_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mvt_proxy.py -------------------------------------------------------------------------------- /pygeoapi/provider/mvt_tippecanoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/mvt_tippecanoe.py -------------------------------------------------------------------------------- /pygeoapi/provider/ogr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/ogr.py -------------------------------------------------------------------------------- /pygeoapi/provider/opensearch_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/opensearch_.py -------------------------------------------------------------------------------- /pygeoapi/provider/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/oracle.py -------------------------------------------------------------------------------- /pygeoapi/provider/parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/parquet.py -------------------------------------------------------------------------------- /pygeoapi/provider/rasterio_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/rasterio_.py -------------------------------------------------------------------------------- /pygeoapi/provider/sensorthings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/sensorthings.py -------------------------------------------------------------------------------- /pygeoapi/provider/sensorthings_edr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/sensorthings_edr.py -------------------------------------------------------------------------------- /pygeoapi/provider/socrata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/socrata.py -------------------------------------------------------------------------------- /pygeoapi/provider/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/sql.py -------------------------------------------------------------------------------- /pygeoapi/provider/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/sqlite.py -------------------------------------------------------------------------------- /pygeoapi/provider/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/tile.py -------------------------------------------------------------------------------- /pygeoapi/provider/tinydb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/tinydb_.py -------------------------------------------------------------------------------- /pygeoapi/provider/wms_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/wms_facade.py -------------------------------------------------------------------------------- /pygeoapi/provider/wmts_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/wmts_facade.py -------------------------------------------------------------------------------- /pygeoapi/provider/xarray_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/xarray_.py -------------------------------------------------------------------------------- /pygeoapi/provider/xarray_edr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/provider/xarray_edr.py -------------------------------------------------------------------------------- /pygeoapi/resources/definitions/tiles/WebMercatorQuad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/resources/definitions/tiles/WebMercatorQuad.json -------------------------------------------------------------------------------- /pygeoapi/resources/definitions/tiles/WorldCRS84Quad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/resources/definitions/tiles/WorldCRS84Quad.json -------------------------------------------------------------------------------- /pygeoapi/resources/schemas/config/pygeoapi-config-0.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/resources/schemas/config/pygeoapi-config-0.x.yml -------------------------------------------------------------------------------- /pygeoapi/resources/schemas/openapi/openapi-3.0.x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/resources/schemas/openapi/openapi-3.0.x.json -------------------------------------------------------------------------------- /pygeoapi/starlette_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/starlette_app.py -------------------------------------------------------------------------------- /pygeoapi/static/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/static/css/default.css -------------------------------------------------------------------------------- /pygeoapi/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/static/img/favicon.ico -------------------------------------------------------------------------------- /pygeoapi/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/static/img/logo.png -------------------------------------------------------------------------------- /pygeoapi/static/img/pygeoapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/static/img/pygeoapi.png -------------------------------------------------------------------------------- /pygeoapi/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/_base.html -------------------------------------------------------------------------------- /pygeoapi/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/admin/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/collection.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/edr/instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/edr/instance.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/edr/instances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/edr/instances.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/edr/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/edr/query.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/items/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/items/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/items/index.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/items/index.jsonld -------------------------------------------------------------------------------- /pygeoapi/templates/collections/items/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/items/item.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/items/item.jsonld: -------------------------------------------------------------------------------- 1 | {{ to_json(data, config.server.pretty_print) | safe }} 2 | -------------------------------------------------------------------------------- /pygeoapi/templates/collections/map/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/map/metadata.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/queryables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/queryables.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/schema.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/tiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/tiles/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/collections/tiles/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/collections/tiles/metadata.html -------------------------------------------------------------------------------- /pygeoapi/templates/conformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/conformance.html -------------------------------------------------------------------------------- /pygeoapi/templates/exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/exception.html -------------------------------------------------------------------------------- /pygeoapi/templates/jobs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/jobs/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/jobs/job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/jobs/job.html -------------------------------------------------------------------------------- /pygeoapi/templates/jobs/results/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/jobs/results/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/landing_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/landing_page.html -------------------------------------------------------------------------------- /pygeoapi/templates/openapi/redoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/openapi/redoc.html -------------------------------------------------------------------------------- /pygeoapi/templates/openapi/swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/openapi/swagger.html -------------------------------------------------------------------------------- /pygeoapi/templates/processes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/processes/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/processes/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/processes/process.html -------------------------------------------------------------------------------- /pygeoapi/templates/stac/catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/stac/catalog.html -------------------------------------------------------------------------------- /pygeoapi/templates/stac/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/stac/collection.html -------------------------------------------------------------------------------- /pygeoapi/templates/stac/collection_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/stac/collection_base.html -------------------------------------------------------------------------------- /pygeoapi/templates/stac/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/stac/item.html -------------------------------------------------------------------------------- /pygeoapi/templates/tilematrixsets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/tilematrixsets/index.html -------------------------------------------------------------------------------- /pygeoapi/templates/tilematrixsets/tilematrixset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/templates/tilematrixsets/tilematrixset.html -------------------------------------------------------------------------------- /pygeoapi/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pygeoapi/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-admin.txt: -------------------------------------------------------------------------------- 1 | filelock 2 | jsonpatch 3 | gunicorn 4 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-django.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/requirements-django.txt -------------------------------------------------------------------------------- /requirements-docker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/requirements-docker.txt -------------------------------------------------------------------------------- /requirements-manager.txt: -------------------------------------------------------------------------------- 1 | psycopg2 2 | 3 | -------------------------------------------------------------------------------- /requirements-provider.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/requirements-provider.txt -------------------------------------------------------------------------------- /requirements-starlette.txt: -------------------------------------------------------------------------------- 1 | aiofiles 2 | starlette 3 | uvicorn[standard] 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_admin.py -------------------------------------------------------------------------------- /tests/api/test_admin_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_admin_live.py -------------------------------------------------------------------------------- /tests/api/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_api.py -------------------------------------------------------------------------------- /tests/api/test_coverages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_coverages.py -------------------------------------------------------------------------------- /tests/api/test_environmental_data_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_environmental_data_retrieval.py -------------------------------------------------------------------------------- /tests/api/test_itemtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_itemtypes.py -------------------------------------------------------------------------------- /tests/api/test_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_maps.py -------------------------------------------------------------------------------- /tests/api/test_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_processes.py -------------------------------------------------------------------------------- /tests/api/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_stac.py -------------------------------------------------------------------------------- /tests/api/test_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/api/test_tiles.py -------------------------------------------------------------------------------- /tests/cite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/cite/README.md -------------------------------------------------------------------------------- /tests/cite/cite.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/cite/cite.config.yml -------------------------------------------------------------------------------- /tests/cite/cite.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/cite/cite.env -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/CMC_glb_NSWRS_SFC_0_latlon.15x.15_2020041100_P000.grib2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/CMC_glb_NSWRS_SFC_0_latlon.15x.15_2020041100_P000.grib2 -------------------------------------------------------------------------------- /tests/data/CMC_glb_PTYPE_SFC_0_latlon.15x.15_2020041100_P000.grib2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/CMC_glb_PTYPE_SFC_0_latlon.15x.15_2020041100_P000.grib2 -------------------------------------------------------------------------------- /tests/data/CMC_glb_TMP_TGL_2_latlon.15x.15_2020081000_P000.grib2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/CMC_glb_TMP_TGL_2_latlon.15x.15_2020081000_P000.grib2 -------------------------------------------------------------------------------- /tests/data/CMC_hrdps_continental_TMP_TGL_80_ps2.5km_2020102700_P005-00.grib2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/CMC_hrdps_continental_TMP_TGL_80_ps2.5km_2020102700_P005-00.grib2 -------------------------------------------------------------------------------- /tests/data/CMIP5_rcp8.5_annual_abs_latlon1x1_PCP_pctl25_P1Y.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/CMIP5_rcp8.5_annual_abs_latlon1x1_PCP_pctl25_P1Y.nc -------------------------------------------------------------------------------- /tests/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/README.md -------------------------------------------------------------------------------- /tests/data/admin/admin-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/admin/admin-patch.json -------------------------------------------------------------------------------- /tests/data/admin/admin-put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/admin/admin-put.json -------------------------------------------------------------------------------- /tests/data/admin/resource-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/admin/resource-patch.json -------------------------------------------------------------------------------- /tests/data/admin/resource-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/admin/resource-post.json -------------------------------------------------------------------------------- /tests/data/admin/resource-put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/admin/resource-put.json -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysed_sst/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysed_sst/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysed_sst/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysed_sst/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysed_sst/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysed_sst/0.0.0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysis_error/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysis_error/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysis_error/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysis_error/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/analysis_error/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/analysis_error/0.0.0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lat/0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/lon/0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/mask/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/mask/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/mask/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/mask/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/mask/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/mask/0.0.0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/sea_ice_fraction/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/sea_ice_fraction/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/sea_ice_fraction/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/sea_ice_fraction/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/sea_ice_fraction/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/sea_ice_fraction/0.0.0 -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/data/analysed_sst.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/analysed_sst.zarr/time/0 -------------------------------------------------------------------------------- /tests/data/canada-hydat-daily-mean-02HC003.tinydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/canada-hydat-daily-mean-02HC003.tinydb -------------------------------------------------------------------------------- /tests/data/coads_sst.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/coads_sst.nc -------------------------------------------------------------------------------- /tests/data/dummy_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dummy_data.sql -------------------------------------------------------------------------------- /tests/data/dummy_types_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dummy_types_data.sql -------------------------------------------------------------------------------- /tests/data/dutch_addresses_28992.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_28992.gpkg -------------------------------------------------------------------------------- /tests/data/dutch_addresses_4326.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_4326.gpkg -------------------------------------------------------------------------------- /tests/data/dutch_addresses_4326.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_4326.sqlite -------------------------------------------------------------------------------- /tests/data/dutch_addresses_shape_28992.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_shape_28992.zip -------------------------------------------------------------------------------- /tests/data/dutch_addresses_shape_4326/inspireadressen.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_shape_4326/inspireadressen.dbf -------------------------------------------------------------------------------- /tests/data/dutch_addresses_shape_4326/inspireadressen.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_shape_4326/inspireadressen.prj -------------------------------------------------------------------------------- /tests/data/dutch_addresses_shape_4326/inspireadressen.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_shape_4326/inspireadressen.shp -------------------------------------------------------------------------------- /tests/data/dutch_addresses_shape_4326/inspireadressen.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/dutch_addresses_shape_4326/inspireadressen.shx -------------------------------------------------------------------------------- /tests/data/hotosm_bdi_waterways.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/hotosm_bdi_waterways.sql.gz -------------------------------------------------------------------------------- /tests/data/items.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/items.geojson -------------------------------------------------------------------------------- /tests/data/mysql_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/mysql_data.sql -------------------------------------------------------------------------------- /tests/data/ne_110m_admin_0_countries.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/ne_110m_admin_0_countries.sqlite -------------------------------------------------------------------------------- /tests/data/ne_110m_lakes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/ne_110m_lakes.geojson -------------------------------------------------------------------------------- /tests/data/ne_110m_populated_places_simple.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/ne_110m_populated_places_simple.geojson -------------------------------------------------------------------------------- /tests/data/norwegian_urban_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/norwegian_urban_areas.csv -------------------------------------------------------------------------------- /tests/data/obs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/obs.csv -------------------------------------------------------------------------------- /tests/data/obs_malformatted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/obs_malformatted.csv -------------------------------------------------------------------------------- /tests/data/open.canada.ca/07b7ef80-6061-43fc-b874-e2800e9ae547.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/07b7ef80-6061-43fc-b874-e2800e9ae547.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/1687cac6-ee13-4866-ab8a-114c2ede7b13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/1687cac6-ee13-4866-ab8a-114c2ede7b13.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/4e81a467-fc14-4fa0-a1d6-9d65336587c6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/4e81a467-fc14-4fa0-a1d6-9d65336587c6.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/63a40754-28a0-4fdc-8e6e-c56854e16dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/63a40754-28a0-4fdc-8e6e-c56854e16dec.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/64e70d29-57a3-44a8-b55c-d465639d1e2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/64e70d29-57a3-44a8-b55c-d465639d1e2e.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/8a09413a-0a01-4aab-8925-720d987deb20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/8a09413a-0a01-4aab-8925-720d987deb20.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/8a74fdb2-ac39-499f-9db2-4c74411d6387.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/8a74fdb2-ac39-499f-9db2-4c74411d6387.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/caeb0592-8c95-4461-b9a5-5fde7f2ccbb3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/caeb0592-8c95-4461-b9a5-5fde7f2ccbb3.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/d3028ad0-b0d0-47ff-bcc3-d383881e17cd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/d3028ad0-b0d0-47ff-bcc3-d383881e17cd.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/e5a71860-827c-453f-990e-0e0ba0ee67bb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/e5a71860-827c-453f-990e-0e0ba0ee67bb.xml -------------------------------------------------------------------------------- /tests/data/open.canada.ca/nhsl_hazard_threat_all_indicators_s_bc.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/nhsl_hazard_threat_all_indicators_s_bc.geojson -------------------------------------------------------------------------------- /tests/data/open.canada.ca/sample-records.tinydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/open.canada.ca/sample-records.tinydb -------------------------------------------------------------------------------- /tests/data/oracle/init-db/01-create-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/oracle/init-db/01-create-user.sql -------------------------------------------------------------------------------- /tests/data/poi_portugal.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/poi_portugal.gpkg -------------------------------------------------------------------------------- /tests/data/postgres_manager_full_structure.backup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/postgres_manager_full_structure.backup.sql -------------------------------------------------------------------------------- /tests/data/random.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/random.parquet -------------------------------------------------------------------------------- /tests/data/random_nocrs.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/random_nocrs.parquet -------------------------------------------------------------------------------- /tests/data/random_nogeom.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/random_nogeom.parquet -------------------------------------------------------------------------------- /tests/data/station_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/station_list.csv -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/0/0/0.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/0/0/0.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/1/0/0.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/1/0/0.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/1/0/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/1/0/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/1/1/0.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/1/1/0.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/1/1/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/1/1/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/0/0.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/0/0.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/0/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/0/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/1/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/1/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/1/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/1/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/2/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/2/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/2/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/2/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/2/3/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/2/3/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/1/1.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/1/1.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/1/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/1/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/1/3.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/1/3.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/2/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/2/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/2/3.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/2/3.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/2/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/2/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/4/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/4/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/4/3.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/4/3.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/4/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/4/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/5/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/5/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/3/6/2.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/3/6/2.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/10/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/10/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/11/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/11/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/12/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/12/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/12/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/12/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/2/3.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/2/3.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/2/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/2/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/2/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/2/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/2/6.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/2/6.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/3/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/3/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/3/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/3/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/3/6.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/3/6.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/4/5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/4/5.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/4/6.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/4/6.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/4/7.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/4/7.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/4/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/4/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/8/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/8/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/9/4.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/9/4.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/9/7.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/9/7.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/4/9/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/4/9/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/17/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/17/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/18/15.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/18/15.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/18/16.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/18/16.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/18/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/18/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/18/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/18/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/14.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/14.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/15.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/15.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/16.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/16.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/17.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/17.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/19/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/19/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/21/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/21/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/22/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/22/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/23/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/23/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/25/10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/25/10.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/25/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/25/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/4/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/4/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/5/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/5/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/5/12.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/5/12.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/5/7.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/5/7.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/5/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/5/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/5/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/5/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/6/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/6/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/6/12.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/6/12.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/6/8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/6/8.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/6/9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/6/9.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/7/10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/7/10.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/7/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/7/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/8/10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/8/10.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/8/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/8/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/8/13.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/8/13.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/8/14.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/8/14.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/8/15.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/8/15.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/9/11.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/9/11.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/5/9/17.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/5/9/17.pbf -------------------------------------------------------------------------------- /tests/data/tiles/ne_110m_lakes/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/data/tiles/ne_110m_lakes/metadata.json -------------------------------------------------------------------------------- /tests/formatter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/formatter/__init__.py -------------------------------------------------------------------------------- /tests/formatter/test_csv__formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/formatter/test_csv__formatter.py -------------------------------------------------------------------------------- /tests/load_es_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/load_es_data.py -------------------------------------------------------------------------------- /tests/load_mongo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/load_mongo_data.py -------------------------------------------------------------------------------- /tests/load_opensearch_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/load_opensearch_data.py -------------------------------------------------------------------------------- /tests/load_oracle_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/load_oracle_data.py -------------------------------------------------------------------------------- /tests/load_tinydb_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/load_tinydb_records.py -------------------------------------------------------------------------------- /tests/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/manager/__init__.py -------------------------------------------------------------------------------- /tests/manager/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/manager/test_manager.py -------------------------------------------------------------------------------- /tests/manager/test_postgresql_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/manager/test_postgresql_manager.py -------------------------------------------------------------------------------- /tests/manager/test_tinydb_manager_for_parallel_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/manager/test_tinydb_manager_for_parallel_requests.py -------------------------------------------------------------------------------- /tests/other/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/__init__.py -------------------------------------------------------------------------------- /tests/other/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_config.py -------------------------------------------------------------------------------- /tests/other/test_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_crs.py -------------------------------------------------------------------------------- /tests/other/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_django.py -------------------------------------------------------------------------------- /tests/other/test_l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_l10n.py -------------------------------------------------------------------------------- /tests/other/test_linked_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_linked_data.py -------------------------------------------------------------------------------- /tests/other/test_ogr_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_ogr_capabilities.py -------------------------------------------------------------------------------- /tests/other/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_openapi.py -------------------------------------------------------------------------------- /tests/other/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/other/test_util.py -------------------------------------------------------------------------------- /tests/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/__init__.py -------------------------------------------------------------------------------- /tests/provider/test_api_ogr_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_api_ogr_provider.py -------------------------------------------------------------------------------- /tests/provider/test_base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_base_provider.py -------------------------------------------------------------------------------- /tests/provider/test_csv__provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_csv__provider.py -------------------------------------------------------------------------------- /tests/provider/test_csw_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_csw_provider.py -------------------------------------------------------------------------------- /tests/provider/test_elasticsearch__provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_elasticsearch__provider.py -------------------------------------------------------------------------------- /tests/provider/test_esri_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_esri_provider.py -------------------------------------------------------------------------------- /tests/provider/test_filesystem_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_filesystem_provider.py -------------------------------------------------------------------------------- /tests/provider/test_geojson_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_geojson_provider.py -------------------------------------------------------------------------------- /tests/provider/test_mongo_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_mongo_provider.py -------------------------------------------------------------------------------- /tests/provider/test_mysql_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_mysql_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_csv_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_csv_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_esrijson_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_esrijson_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_gpkg_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_gpkg_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_shapefile_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_shapefile_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_sqlite_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_sqlite_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_wfs_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_wfs_provider.py -------------------------------------------------------------------------------- /tests/provider/test_ogr_wfs_provider_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_ogr_wfs_provider_live.py -------------------------------------------------------------------------------- /tests/provider/test_opensearch__provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_opensearch__provider.py -------------------------------------------------------------------------------- /tests/provider/test_oracle_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_oracle_provider.py -------------------------------------------------------------------------------- /tests/provider/test_parquet_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_parquet_provider.py -------------------------------------------------------------------------------- /tests/provider/test_postgresql_mvt_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_postgresql_mvt_provider.py -------------------------------------------------------------------------------- /tests/provider/test_postgresql_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_postgresql_provider.py -------------------------------------------------------------------------------- /tests/provider/test_rasterio_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_rasterio_provider.py -------------------------------------------------------------------------------- /tests/provider/test_sensorthings_edr_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_sensorthings_edr_provider.py -------------------------------------------------------------------------------- /tests/provider/test_sensorthings_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_sensorthings_provider.py -------------------------------------------------------------------------------- /tests/provider/test_socrata_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_socrata_provider.py -------------------------------------------------------------------------------- /tests/provider/test_socrata_provider_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_socrata_provider_live.py -------------------------------------------------------------------------------- /tests/provider/test_sqlite_geopackage_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_sqlite_geopackage_provider.py -------------------------------------------------------------------------------- /tests/provider/test_tinydb_catalogue_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_tinydb_catalogue_provider.py -------------------------------------------------------------------------------- /tests/provider/test_tinydb_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_tinydb_provider.py -------------------------------------------------------------------------------- /tests/provider/test_xarray_netcdf_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_xarray_netcdf_provider.py -------------------------------------------------------------------------------- /tests/provider/test_xarray_zarr_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/provider/test_xarray_zarr_provider.py -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-admin.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-apirules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-apirules.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-enclosure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-enclosure.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-envvars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-envvars.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-hidden-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-hidden-resources.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-ogr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-ogr.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-postgresql-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-postgresql-manager.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config-postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config-postgresql.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-config.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-openapi.yml -------------------------------------------------------------------------------- /tests/pygeoapi-test-stac-api-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/pygeoapi-test-stac-api-config.yml -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopython/pygeoapi/HEAD/tests/util.py --------------------------------------------------------------------------------