MapProxy 5.1.1__tar.gz → 6.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mapproxy-5.1.1 → mapproxy-6.0.1}/CHANGES.txt +48 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/PKG-INFO +53 -39
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/SOURCES.txt +54 -2
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/requires.txt +4 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/PKG-INFO +53 -39
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/caching_layer_dimensions.rst +2 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/configuration.rst +13 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/configuration_examples.rst +2 -5
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/deployment.rst +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/inspire.rst +1 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/install_docker.rst +3 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/install_windows.rst +0 -6
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/mapproxy_util.rst +96 -1
- mapproxy-6.0.1/doc/ogc_api.rst +4 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/services.rst +141 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/sources.rst +142 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/mbtiles.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/http.py +26 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/config-schema.json +183 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/coverage.py +0 -5
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/defaults.py +9 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/loader.py +149 -2
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/spec.py +63 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/featureinfo.py +7 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/grid/resolutions.py +55 -38
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/grid/tile_grid.py +145 -4
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/__init__.py +2 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/mask.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/merge.py +2 -6
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/message.py +2 -2
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/opts.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/transform.py +3 -9
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/base.py +4 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/response.py +3 -2
- mapproxy-6.0.1/mapproxy/script/gridconf_from_ogcapitilematrixset.py +113 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/util.py +6 -1
- mapproxy-6.0.1/mapproxy/service/ogcapi/api.py +781 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/collections.py +229 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/conformance.py +78 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/constants.py +35 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/landing_page.py +167 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/map.py +621 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/map_utils.py +277 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/server.py +384 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/tile.py +212 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/tilematrixsets.py +106 -0
- mapproxy-6.0.1/mapproxy/service/ogcapi/tilesets.py +323 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/ows.py +3 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/demo.html +19 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/ol.css +8 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/proj4.min.js +14 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/_base.html +127 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/collections/collection.html +157 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/collections/index.html +34 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/conformance.html +15 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/exception.html +8 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/landing_page.html +197 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/openapi/redoc.html +19 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/openapi/swagger.html +57 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/css/bootstrap.min.css +7 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/css/default.css +75 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/fonts_montserra_roboto.css +369 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/img/logo.png +0 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/img/pygeoapi-logo.png +0 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/redoc.standalone.js +1782 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/swagger-ui-dist/favicon-16x16.png +0 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/swagger-ui-dist/favicon-32x32.png +0 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui-bundle.js +2 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui-standalone-preset.js +2 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui.css +3 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/tilematrixsets/index.html +39 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/tilematrixsets/tilematrixset.html +18 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/tilesets/index.html +39 -0
- mapproxy-6.0.1/mapproxy/service/templates/ogcapi/tilesets/tileset.html +113 -0
- mapproxy-6.0.1/mapproxy/service/templates/tms_capabilities.xml +35 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms130capabilities.xml +0 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wmts100capabilities.xml +6 -8
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/tile.py +2 -2
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/wms.py +5 -3
- mapproxy-6.0.1/mapproxy/source/ogcapimaps.py +207 -0
- mapproxy-6.0.1/mapproxy/source/ogcapitiles.py +316 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/wms.py +54 -34
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/srs.py +30 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/image.py +1 -5
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/layer.yaml +6 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapi_maps_and_tiles_non_earth_service.yaml +29 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapi_maps_and_tiles_service.yaml +65 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapimaps_non_earth_source.yaml +23 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapimaps_service.yaml +66 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapimaps_source.yaml +33 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapimaps_source_with_supported_srs.yaml +24 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapitiles_non_earth_source.yaml +30 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapitiles_service.yaml +65 -0
- mapproxy-6.0.1/mapproxy/test/system/fixture/ogcapitiles_source.yaml +43 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_auth.py +2 -8
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_combined_sources.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_coverage.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_decorate_img.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_legendgraphic.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_mapnik.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_mapserver.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_mixed_mode_format.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_refresh.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_seed.py +8 -8
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_seed_only.py +1 -1
- mapproxy-6.0.1/mapproxy/test/system/test_service_ogcapi.py +3384 -0
- mapproxy-6.0.1/mapproxy/test/system/test_source_ogcapimaps.py +238 -0
- mapproxy-6.0.1/mapproxy/test/system/test_source_ogcapitiles.py +483 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_tms.py +3 -1
- mapproxy-6.0.1/mapproxy/test/system/test_util_gridconf_from_ogcapitilematrixset.py +194 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_watermark.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wms.py +3 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_auth.py +1 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_mbtile.py +7 -7
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_concat_legends.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_decorate_img.py +2 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_exceptions.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_featureinfo.py +2 -2
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_geom.py +0 -4
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_grid.py +683 -354
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_image.py +5 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_image_mask.py +2 -11
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_image_messages.py +1 -1
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_srs.py +8 -0
- mapproxy-6.0.1/mapproxy/test/unit/test_util_ogcapi.py +68 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/bbox.py +11 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/coverage.py +3 -9
- mapproxy-6.0.1/mapproxy/util/ext/__init__.py +14 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/geom.py +6 -15
- mapproxy-6.0.1/mapproxy/util/jinja2_templates.py +252 -0
- mapproxy-6.0.1/mapproxy/util/ogcapi.py +57 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/requirements-tests.txt +3 -3
- {mapproxy-5.1.1 → mapproxy-6.0.1}/setup.py +6 -3
- mapproxy-5.1.1/doc/ogc_api.rst +0 -12
- mapproxy-5.1.1/mapproxy/compat/image.py +0 -86
- mapproxy-5.1.1/mapproxy/service/templates/tms_capabilities.xml +0 -13
- mapproxy-5.1.1/mapproxy/util/ext/wmsparse/test/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/AUTHORS.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/COPYING.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/LICENSE.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MANIFEST.in +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/dependency_links.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/entry_points.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/not-zip-safe +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/MapProxy.egg-info/top_level.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/README.md +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/GM.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/_static/logo.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/_static/logo_title.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/_static/mapproxy.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/_templates/versions.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/auth.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/caches.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/conf.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/coverages.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/decorate_img.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/development.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/bicubic.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/bilinear.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-dynamic.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-meta-buffer.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-metatiling-buffer.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-metatiling.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-no-clip.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-no-placement.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-partial-false.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/labeling-repeated.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/mapnik-webmerc-hq.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/mapnik-webmerc.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/mapproxy-demo.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/imgs/nearest.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/index.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/install.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/install_osgeo4w.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/labeling.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/mapproxy_util_autoconfig.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/plugins.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/seed.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/tutorial.rst +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/tutorial.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/cache_conf.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/grid_conf.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/merged_conf.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/meta_conf.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/seed.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/doc/yaml/simple_conf.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/azureblob.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/base.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/compact.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/couchdb.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/dummy.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/file.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/geopackage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/legend.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/meta.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/path.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/redis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/renderd.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/s3.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/cache/tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/arcgis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/cgi.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/log.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/client/wms.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/config.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config/validator.py +0 -0
- {mapproxy-5.1.1/mapproxy/compat → mapproxy-6.0.1/mapproxy/config_template}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/config.wsgi +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/full_example.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/full_seed_example.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/log.ini +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/mapproxy.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/config_template/base_config/seed.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/exception.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/grid/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/grid/meta_grid.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/fonts/DejaVuSans.ttf +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/fonts/DejaVuSansMono.ttf +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/fonts/LICENSE +0 -0
- {mapproxy-5.1.1/mapproxy/config_template → mapproxy-6.0.1/mapproxy/image/fonts}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/image/tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/layer.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/multiapp.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/proj.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/arcgis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/wms/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/wms/exception.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/request/wmts.py +0 -0
- {mapproxy-5.1.1/mapproxy/image/fonts → mapproxy-6.0.1/mapproxy/script}/__init__.py +0 -0
- {mapproxy-5.1.1/mapproxy/script → mapproxy-6.0.1/mapproxy/script/conf}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/app.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/caches.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/geopackage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/layers.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/seeds.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/sources.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/conf/utils.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/defrag.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/export.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/grids.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/scales.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/script/wms_capabilities.py +0 -0
- {mapproxy-5.1.1/mapproxy/script/conf → mapproxy-6.0.1/mapproxy/seed}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/cachelock.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/cleanup.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/config.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/script.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/seeder.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/spec.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/seed/util.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/base.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/demo.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/kml.py +0 -0
- {mapproxy-5.1.1/mapproxy/util/ext → mapproxy-6.0.1/mapproxy/service/ogcapi}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/template_helper.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/capabilities_demo.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/openlayers-demo.cfg +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/blank.gif +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/east-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/north-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/south-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/west-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/zoom-minus-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/zoom-plus-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/img/zoom-world-mini.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/logo.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/ol.js +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/proj4defs.js +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/site.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/theme/default/framedCloud.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/theme/default/google.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/theme/default/ie6-style.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static/theme/default/style.css +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/static.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/tms_demo.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/wms_demo.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/demo/wmts_demo.html +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/ows_exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/tms_exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/tms_root_resource.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/tms_tilemap_capabilities.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms100capabilities.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms100exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms110capabilities.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms110exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms111capabilities.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms111exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wms130exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/templates/wmts100exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/service/wmts.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/arcgis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/error.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/mapnik.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/source/tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/template.py +0 -0
- {mapproxy-5.1.1/mapproxy/seed → mapproxy-6.0.1/mapproxy/test}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/conftest.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/helper.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/http.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/mocker.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/common.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_bul.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_cze.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_dan.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_dut.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_eng.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_est.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_fin.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_fre.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_ger.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_gle.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_gre.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_hun.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_ita.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_lav.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_lit.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_mlt.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_pol.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_por.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_rum.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_slo.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_slv.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_spa.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_swe.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/common/1.0/network.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/inspire/inspire_vs/1.0/inspire_vs.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/kml/2.2.0/ReadMe.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/kml/2.2.0/atom-author-link.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/kml/2.2.0/ogckml22.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/kml/2.2.0/xAL.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/ReadMe.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/ows19115subset.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsAll.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsCommon.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsContents.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsDataIdentification.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsDomainType.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsExceptionReport.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsGetCapabilities.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsGetResourceByID.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsInputOutputData.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsManifest.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsOperationsMetadata.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsServiceIdentification.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/ows/1.1.0/owsServiceProvider.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/sld/1.1.0/sld_capabilities.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/OGC-exception.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/WMS_DescribeLayerResponse.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.3.0/ReadMe.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/OGC-exception.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_DescribeLayerResponse.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_MS_Capabilities.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_exception_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.dtd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/ReadMe.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmts.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsAbstract.wsdl +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_request.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_response.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_request.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_response.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetTile_request.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsKVP.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/wmts/1.0/wmtsPayload_response.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/xlink/1.0.0/ReadMe.txt +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/xlink/1.0.0/xlinks.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/schemas/xml.xsd +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/arcgis.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/auth.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache.mbtiles +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_azureblob.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_band_merge.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_bulk_meta_tiles.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_coverage.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_data/dop_cache_EPSG3857/00/000/000/000/000/000/000.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_data/wms_cache_EPSG900913/01/000/000/000/000/000/001.jpeg +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_data/wms_cache_transparent_EPSG900913/01/000/000/000/000/000/001.png +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_geopackage.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_grid_names.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_mbtiles.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_s3.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/cache_source.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/combined_sources.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/coverage.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/demo.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/dimension.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/disable_storage.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/empty_ogrdata.geojson +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/formats.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/inspire.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/inspire_full.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/kml_layer.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/layergroups.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/layergroups_root.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/legendgraphic.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/mapnik_source.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/mapproxy_export.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/mapserver.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/minimal_cgi.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/mixed_mode.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/multi_cache_layers.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/multiapp1.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/multiapp2.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/renderd_client.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/scalehints.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/seed.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/seed_mapproxy.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/seed_timeouts.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/seed_timeouts_mapproxy.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/seedonly.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/sld.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/source_errors.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/source_errors_raise.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/tileservice_origin.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/tileservice_refresh.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/tilesource_minmax_res.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util-conf-base-grids.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util-conf-overwrite.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util-conf-wms-111-cap.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util_grids.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util_wms_capabilities111.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util_wms_capabilities130.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/util_wms_capabilities_service_exception.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/watermark.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/wms_srs_extent.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/wms_versions.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/wmts.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/wmts_dimensions.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/xslt_featureinfo.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/fixture/xslt_featureinfo_input.yaml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_arcgis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_behind_proxy.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_bulk_meta_tiles.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_azureblob.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_band_merge.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_coverage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_geopackage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_grid_names.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_mbtiles.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_s3.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_cache_source.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_demo.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_demo_with_extra_service.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_dimensions.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_disable_storage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_formats.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_inspire_vs.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_kml.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_layergroups.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_multi_cache_layers.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_multiapp.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_renderd_client.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_response_headers.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_scalehints.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_sld.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_source_errors.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_tilesource_minmax_res.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_tms_origin.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_util_conf.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_util_export.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_util_grids.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_util_wms_capabilities.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wms_srs_extent.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wms_version.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wmsc.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wmts.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wmts_dimensions.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_wmts_restful.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/system/test_xslt_featureinfo.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/test_http_helper.py +0 -0
- {mapproxy-5.1.1/mapproxy/test → mapproxy-6.0.1/mapproxy/test/unit}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/epsg +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/polygons/polygons.dbf +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/polygons/polygons.shp +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/polygons/polygons.shx +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_async.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_azureblob.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_compact.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_couchdb.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_geopackage.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_redis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_s3.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_cache_tile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_client.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_client_arcgis.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_client_cgi.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_collections.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_conf_loader.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_conf_validator.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_config.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_file_lock_load.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_fs.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_image_options.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_isodate.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_multiapp.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_ogr_reader.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_request.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_request_wmts.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_response.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_seed.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_seed_cachelock.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_tiled_source.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_tilefilter.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_times.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_timeutils.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_util_conf_utils.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_utils.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_wms_capabilities.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_wms_layer.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/test/unit/test_yaml.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/tilefilter.py +0 -0
- {mapproxy-5.1.1/mapproxy/test/unit → mapproxy-6.0.1/mapproxy/util}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/async_.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/collections.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/escape.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/dictspec/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/dictspec/spec.py +0 -0
- {mapproxy-5.1.1/mapproxy/util → mapproxy-6.0.1/mapproxy/util/ext/dictspec/test}/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/dictspec/test/test_validator.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/dictspec/validator.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/local.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/lockfile.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/serving.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/tempita/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/tempita/_looper.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/tempita/string_utils.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/duration.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/parse.py +0 -0
- {mapproxy-5.1.1/mapproxy/util/ext/dictspec → mapproxy-6.0.1/mapproxy/util/ext/wmsparse}/test/__init__.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/test_parse.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/test_util.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/wms-example-111.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/wms-example-130.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/wms-large-111.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/test/wms_nasa_cap.xml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ext/wmsparse/util.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/fs.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/lib.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/lock.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/ogr.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/py.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/sqlite3.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/times.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/util/yaml.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/version.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/mapproxy/wsgiapp.py +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/pyproject.toml +0 -0
- {mapproxy-5.1.1 → mapproxy-6.0.1}/setup.cfg +0 -0
|
@@ -1,3 +1,51 @@
|
|
|
1
|
+
6.0.1 2025-10-29
|
|
2
|
+
~~~~~~~~~~~~~~~~
|
|
3
|
+
|
|
4
|
+
Maintenance:
|
|
5
|
+
|
|
6
|
+
- Removed code to be able to start up MapProxy without PIL.
|
|
7
|
+
|
|
8
|
+
Fixes:
|
|
9
|
+
|
|
10
|
+
- Add python-dateutil dependency to avoid errors on startup.
|
|
11
|
+
- Add ogcapi to config-schema.json to avoid warnings on startup.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
6.0.0 2025-10-22
|
|
15
|
+
~~~~~~~~~~~~~~~~
|
|
16
|
+
|
|
17
|
+
Breaking:
|
|
18
|
+
|
|
19
|
+
- The extension for mbtiles used in MapProxy was wrong. It used `.mbtile` instead of `.mbtiles`. Existing files in
|
|
20
|
+
caches have to be renamed! Here is a small script to change all files in a directory recursively:
|
|
21
|
+
`find . -type f -name "*.mbtile" -exec sh -c 'mv "$1" "${1%.mbtile}.mbtiles"' _ {} \;`
|
|
22
|
+
- lxml was updated. The new version is much stricter in its inputs and administrators might have to adjust
|
|
23
|
+
featureinfo services to output valid HTML.
|
|
24
|
+
|
|
25
|
+
Improvements:
|
|
26
|
+
|
|
27
|
+
- New source types `ogcapitiles` and `ogcapimaps` are now available! See docs for further information.
|
|
28
|
+
- New util `gridconf-from-ogcapitilematrixset` to fetch grids from an OGC API compliant web service was added.
|
|
29
|
+
See docs for further information.
|
|
30
|
+
- MapProxy now offers an OGCAPI compliant service for OGC API Maps and OGC API Tiles. Including landing page and
|
|
31
|
+
preview maps! See docs for further information.
|
|
32
|
+
- The `SERVICE` parameter for WMS `GetMap` requests is no longer mandatory as according to spec.
|
|
33
|
+
- Added test pipeline for the documentation.
|
|
34
|
+
- The GitHub actions now have better fitting permissions, improving the security.
|
|
35
|
+
- WMTS capabilities now include `OperationsMetadata` for restful mode.
|
|
36
|
+
- TMS capabilities now include metadata similar to WMS and WMTS.
|
|
37
|
+
|
|
38
|
+
Maintenance:
|
|
39
|
+
|
|
40
|
+
- Some fixes in the documentation.
|
|
41
|
+
- As shapely is no longer optional, code to check for its existence has been removed.
|
|
42
|
+
|
|
43
|
+
Fixes:
|
|
44
|
+
|
|
45
|
+
- An error regarding unicode strings in the featureinfo parsing was fixed.
|
|
46
|
+
- An error in the debug logging of configurations was fixed
|
|
47
|
+
|
|
48
|
+
|
|
1
49
|
5.1.1 2025-10-01
|
|
2
50
|
~~~~~~~~~~~~~~~~
|
|
3
51
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: MapProxy
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.1
|
|
4
4
|
Summary: An accelerating proxy for tile and web map services
|
|
5
5
|
Home-page: https://mapproxy.org
|
|
6
6
|
Author: Oliver Tonnhofer
|
|
@@ -34,8 +34,11 @@ Requires-Dist: Pillow>=9; python_version == "3.10"
|
|
|
34
34
|
Requires-Dist: Pillow>=10; python_version == "3.11"
|
|
35
35
|
Requires-Dist: Pillow>=10.1; python_version == "3.12"
|
|
36
36
|
Requires-Dist: Pillow>=11; python_version == "3.13"
|
|
37
|
-
Requires-Dist: lxml>=
|
|
37
|
+
Requires-Dist: lxml>=6
|
|
38
38
|
Requires-Dist: shapely>=2
|
|
39
|
+
Requires-Dist: jinja2
|
|
40
|
+
Requires-Dist: Babel
|
|
41
|
+
Requires-Dist: python-dateutil
|
|
39
42
|
Dynamic: author
|
|
40
43
|
Dynamic: author-email
|
|
41
44
|
Dynamic: classifier
|
|
@@ -61,6 +64,54 @@ The documentation is available at: http://mapproxy.github.io/mapproxy/latest/
|
|
|
61
64
|
|
|
62
65
|
Changes
|
|
63
66
|
-------
|
|
67
|
+
6.0.1 2025-10-29
|
|
68
|
+
~~~~~~~~~~~~~~~~
|
|
69
|
+
|
|
70
|
+
Maintenance:
|
|
71
|
+
|
|
72
|
+
- Removed code to be able to start up MapProxy without PIL.
|
|
73
|
+
|
|
74
|
+
Fixes:
|
|
75
|
+
|
|
76
|
+
- Add python-dateutil dependency to avoid errors on startup.
|
|
77
|
+
- Add ogcapi to config-schema.json to avoid warnings on startup.
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
6.0.0 2025-10-22
|
|
81
|
+
~~~~~~~~~~~~~~~~
|
|
82
|
+
|
|
83
|
+
Breaking:
|
|
84
|
+
|
|
85
|
+
- The extension for mbtiles used in MapProxy was wrong. It used `.mbtile` instead of `.mbtiles`. Existing files in
|
|
86
|
+
caches have to be renamed! Here is a small script to change all files in a directory recursively:
|
|
87
|
+
`find . -type f -name "*.mbtile" -exec sh -c 'mv "$1" "${1%.mbtile}.mbtiles"' _ {} \;`
|
|
88
|
+
- lxml was updated. The new version is much stricter in its inputs and administrators might have to adjust
|
|
89
|
+
featureinfo services to output valid HTML.
|
|
90
|
+
|
|
91
|
+
Improvements:
|
|
92
|
+
|
|
93
|
+
- New source types `ogcapitiles` and `ogcapimaps` are now available! See docs for further information.
|
|
94
|
+
- New util `gridconf-from-ogcapitilematrixset` to fetch grids from an OGC API compliant web service was added.
|
|
95
|
+
See docs for further information.
|
|
96
|
+
- MapProxy now offers an OGCAPI compliant service for OGC API Maps and OGC API Tiles. Including landing page and
|
|
97
|
+
preview maps! See docs for further information.
|
|
98
|
+
- The `SERVICE` parameter for WMS `GetMap` requests is no longer mandatory as according to spec.
|
|
99
|
+
- Added test pipeline for the documentation.
|
|
100
|
+
- The GitHub actions now have better fitting permissions, improving the security.
|
|
101
|
+
- WMTS capabilities now include `OperationsMetadata` for restful mode.
|
|
102
|
+
- TMS capabilities now include metadata similar to WMS and WMTS.
|
|
103
|
+
|
|
104
|
+
Maintenance:
|
|
105
|
+
|
|
106
|
+
- Some fixes in the documentation.
|
|
107
|
+
- As shapely is no longer optional, code to check for its existence has been removed.
|
|
108
|
+
|
|
109
|
+
Fixes:
|
|
110
|
+
|
|
111
|
+
- An error regarding unicode strings in the featureinfo parsing was fixed.
|
|
112
|
+
- An error in the debug logging of configurations was fixed
|
|
113
|
+
|
|
114
|
+
|
|
64
115
|
5.1.1 2025-10-01
|
|
65
116
|
~~~~~~~~~~~~~~~~
|
|
66
117
|
|
|
@@ -129,43 +180,6 @@ Improvements:
|
|
|
129
180
|
- The scale denominator in the WMTS capabilites is now rounded to 10 digits after the decimal place.
|
|
130
181
|
|
|
131
182
|
|
|
132
|
-
4.1.0 2025-04-29
|
|
133
|
-
~~~~~~~~~~~~~~~~
|
|
134
|
-
|
|
135
|
-
Improvements:
|
|
136
|
-
|
|
137
|
-
- It is now possible to integrate the grid name into paths for AWS buckets. This allows storage of tiles for multiple
|
|
138
|
-
grids in the same bucket.
|
|
139
|
-
- We are returning a 404 http status code instead of a 500 if no legend graphic is found for a service.
|
|
140
|
-
- We are using utf-8 in GetFeatureInfo requests now.
|
|
141
|
-
|
|
142
|
-
Maintenance:
|
|
143
|
-
|
|
144
|
-
- Updated some dependencies.
|
|
145
|
-
- Updated the GitHub runner versions.
|
|
146
|
-
- Refactored the grid.py file into multiple files.
|
|
147
|
-
- Removed the implementation of odict in favour of the builtin OrderedDict class.
|
|
148
|
-
- Added support for python 3.13.
|
|
149
|
-
- Skipping permissions tests if tests are run with root user. This is necessary to build and test MapProxy in a chroot
|
|
150
|
-
environment which is used to package MapProxy for Debian. Normal testing is not affected.
|
|
151
|
-
|
|
152
|
-
Fixes:
|
|
153
|
-
|
|
154
|
-
- Fixed deprecation warnings for utctime, sqlite, ImageMath.eval, mock_s3.
|
|
155
|
-
- Fix entrypoint.sh to create default MapProxy configurations if none are found.
|
|
156
|
-
- Allowed the trivy security scan workflow to write the results to the GitHub security tab.
|
|
157
|
-
- We are not allowing the deprecated TLS Versions 1.1 or lower for connections to servers anymore.
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
4.0.2 2025-04-10
|
|
161
|
-
~~~~~~~~~~~~~~~~
|
|
162
|
-
|
|
163
|
-
Fixes:
|
|
164
|
-
|
|
165
|
-
- Security fix to prevent XSS injections in demo pages
|
|
166
|
-
- Security fix to prevent reading file urls
|
|
167
|
-
|
|
168
|
-
|
|
169
183
|
|
|
170
184
|
Older changes
|
|
171
185
|
-------------
|
|
@@ -100,8 +100,6 @@ mapproxy/client/http.py
|
|
|
100
100
|
mapproxy/client/log.py
|
|
101
101
|
mapproxy/client/tile.py
|
|
102
102
|
mapproxy/client/wms.py
|
|
103
|
-
mapproxy/compat/__init__.py
|
|
104
|
-
mapproxy/compat/image.py
|
|
105
103
|
mapproxy/config/__init__.py
|
|
106
104
|
mapproxy/config/config-schema.json
|
|
107
105
|
mapproxy/config/config.py
|
|
@@ -142,6 +140,7 @@ mapproxy/request/wms/exception.py
|
|
|
142
140
|
mapproxy/script/__init__.py
|
|
143
141
|
mapproxy/script/defrag.py
|
|
144
142
|
mapproxy/script/export.py
|
|
143
|
+
mapproxy/script/gridconf_from_ogcapitilematrixset.py
|
|
145
144
|
mapproxy/script/grids.py
|
|
146
145
|
mapproxy/script/scales.py
|
|
147
146
|
mapproxy/script/util.py
|
|
@@ -171,6 +170,18 @@ mapproxy/service/template_helper.py
|
|
|
171
170
|
mapproxy/service/tile.py
|
|
172
171
|
mapproxy/service/wms.py
|
|
173
172
|
mapproxy/service/wmts.py
|
|
173
|
+
mapproxy/service/ogcapi/__init__.py
|
|
174
|
+
mapproxy/service/ogcapi/api.py
|
|
175
|
+
mapproxy/service/ogcapi/collections.py
|
|
176
|
+
mapproxy/service/ogcapi/conformance.py
|
|
177
|
+
mapproxy/service/ogcapi/constants.py
|
|
178
|
+
mapproxy/service/ogcapi/landing_page.py
|
|
179
|
+
mapproxy/service/ogcapi/map.py
|
|
180
|
+
mapproxy/service/ogcapi/map_utils.py
|
|
181
|
+
mapproxy/service/ogcapi/server.py
|
|
182
|
+
mapproxy/service/ogcapi/tile.py
|
|
183
|
+
mapproxy/service/ogcapi/tilematrixsets.py
|
|
184
|
+
mapproxy/service/ogcapi/tilesets.py
|
|
174
185
|
mapproxy/service/templates/ows_exception.xml
|
|
175
186
|
mapproxy/service/templates/tms_capabilities.xml
|
|
176
187
|
mapproxy/service/templates/tms_exception.xml
|
|
@@ -211,10 +222,35 @@ mapproxy/service/templates/demo/static/theme/default/framedCloud.css
|
|
|
211
222
|
mapproxy/service/templates/demo/static/theme/default/google.css
|
|
212
223
|
mapproxy/service/templates/demo/static/theme/default/ie6-style.css
|
|
213
224
|
mapproxy/service/templates/demo/static/theme/default/style.css
|
|
225
|
+
mapproxy/service/templates/ogcapi/_base.html
|
|
226
|
+
mapproxy/service/templates/ogcapi/conformance.html
|
|
227
|
+
mapproxy/service/templates/ogcapi/exception.html
|
|
228
|
+
mapproxy/service/templates/ogcapi/landing_page.html
|
|
229
|
+
mapproxy/service/templates/ogcapi/collections/collection.html
|
|
230
|
+
mapproxy/service/templates/ogcapi/collections/index.html
|
|
231
|
+
mapproxy/service/templates/ogcapi/openapi/redoc.html
|
|
232
|
+
mapproxy/service/templates/ogcapi/openapi/swagger.html
|
|
233
|
+
mapproxy/service/templates/ogcapi/static/fonts_montserra_roboto.css
|
|
234
|
+
mapproxy/service/templates/ogcapi/static/redoc.standalone.js
|
|
235
|
+
mapproxy/service/templates/ogcapi/static/css/bootstrap.min.css
|
|
236
|
+
mapproxy/service/templates/ogcapi/static/css/default.css
|
|
237
|
+
mapproxy/service/templates/ogcapi/static/img/logo.png
|
|
238
|
+
mapproxy/service/templates/ogcapi/static/img/pygeoapi-logo.png
|
|
239
|
+
mapproxy/service/templates/ogcapi/static/swagger-ui-dist/favicon-16x16.png
|
|
240
|
+
mapproxy/service/templates/ogcapi/static/swagger-ui-dist/favicon-32x32.png
|
|
241
|
+
mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui-bundle.js
|
|
242
|
+
mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui-standalone-preset.js
|
|
243
|
+
mapproxy/service/templates/ogcapi/static/swagger-ui-dist/swagger-ui.css
|
|
244
|
+
mapproxy/service/templates/ogcapi/tilematrixsets/index.html
|
|
245
|
+
mapproxy/service/templates/ogcapi/tilematrixsets/tilematrixset.html
|
|
246
|
+
mapproxy/service/templates/ogcapi/tilesets/index.html
|
|
247
|
+
mapproxy/service/templates/ogcapi/tilesets/tileset.html
|
|
214
248
|
mapproxy/source/__init__.py
|
|
215
249
|
mapproxy/source/arcgis.py
|
|
216
250
|
mapproxy/source/error.py
|
|
217
251
|
mapproxy/source/mapnik.py
|
|
252
|
+
mapproxy/source/ogcapimaps.py
|
|
253
|
+
mapproxy/source/ogcapitiles.py
|
|
218
254
|
mapproxy/source/tile.py
|
|
219
255
|
mapproxy/source/wms.py
|
|
220
256
|
mapproxy/test/__init__.py
|
|
@@ -348,13 +384,17 @@ mapproxy/test/system/test_response_headers.py
|
|
|
348
384
|
mapproxy/test/system/test_scalehints.py
|
|
349
385
|
mapproxy/test/system/test_seed.py
|
|
350
386
|
mapproxy/test/system/test_seed_only.py
|
|
387
|
+
mapproxy/test/system/test_service_ogcapi.py
|
|
351
388
|
mapproxy/test/system/test_sld.py
|
|
352
389
|
mapproxy/test/system/test_source_errors.py
|
|
390
|
+
mapproxy/test/system/test_source_ogcapimaps.py
|
|
391
|
+
mapproxy/test/system/test_source_ogcapitiles.py
|
|
353
392
|
mapproxy/test/system/test_tilesource_minmax_res.py
|
|
354
393
|
mapproxy/test/system/test_tms.py
|
|
355
394
|
mapproxy/test/system/test_tms_origin.py
|
|
356
395
|
mapproxy/test/system/test_util_conf.py
|
|
357
396
|
mapproxy/test/system/test_util_export.py
|
|
397
|
+
mapproxy/test/system/test_util_gridconf_from_ogcapitilematrixset.py
|
|
358
398
|
mapproxy/test/system/test_util_grids.py
|
|
359
399
|
mapproxy/test/system/test_util_wms_capabilities.py
|
|
360
400
|
mapproxy/test/system/test_watermark.py
|
|
@@ -400,6 +440,15 @@ mapproxy/test/system/fixture/mixed_mode.yaml
|
|
|
400
440
|
mapproxy/test/system/fixture/multi_cache_layers.yaml
|
|
401
441
|
mapproxy/test/system/fixture/multiapp1.yaml
|
|
402
442
|
mapproxy/test/system/fixture/multiapp2.yaml
|
|
443
|
+
mapproxy/test/system/fixture/ogcapi_maps_and_tiles_non_earth_service.yaml
|
|
444
|
+
mapproxy/test/system/fixture/ogcapi_maps_and_tiles_service.yaml
|
|
445
|
+
mapproxy/test/system/fixture/ogcapimaps_non_earth_source.yaml
|
|
446
|
+
mapproxy/test/system/fixture/ogcapimaps_service.yaml
|
|
447
|
+
mapproxy/test/system/fixture/ogcapimaps_source.yaml
|
|
448
|
+
mapproxy/test/system/fixture/ogcapimaps_source_with_supported_srs.yaml
|
|
449
|
+
mapproxy/test/system/fixture/ogcapitiles_non_earth_source.yaml
|
|
450
|
+
mapproxy/test/system/fixture/ogcapitiles_service.yaml
|
|
451
|
+
mapproxy/test/system/fixture/ogcapitiles_source.yaml
|
|
403
452
|
mapproxy/test/system/fixture/renderd_client.yaml
|
|
404
453
|
mapproxy/test/system/fixture/scalehints.yaml
|
|
405
454
|
mapproxy/test/system/fixture/seed.yaml
|
|
@@ -476,6 +525,7 @@ mapproxy/test/unit/test_tilefilter.py
|
|
|
476
525
|
mapproxy/test/unit/test_times.py
|
|
477
526
|
mapproxy/test/unit/test_timeutils.py
|
|
478
527
|
mapproxy/test/unit/test_util_conf_utils.py
|
|
528
|
+
mapproxy/test/unit/test_util_ogcapi.py
|
|
479
529
|
mapproxy/test/unit/test_utils.py
|
|
480
530
|
mapproxy/test/unit/test_wms_capabilities.py
|
|
481
531
|
mapproxy/test/unit/test_wms_layer.py
|
|
@@ -491,8 +541,10 @@ mapproxy/util/coverage.py
|
|
|
491
541
|
mapproxy/util/escape.py
|
|
492
542
|
mapproxy/util/fs.py
|
|
493
543
|
mapproxy/util/geom.py
|
|
544
|
+
mapproxy/util/jinja2_templates.py
|
|
494
545
|
mapproxy/util/lib.py
|
|
495
546
|
mapproxy/util/lock.py
|
|
547
|
+
mapproxy/util/ogcapi.py
|
|
496
548
|
mapproxy/util/ogr.py
|
|
497
549
|
mapproxy/util/py.py
|
|
498
550
|
mapproxy/util/sqlite3.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: MapProxy
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.1
|
|
4
4
|
Summary: An accelerating proxy for tile and web map services
|
|
5
5
|
Home-page: https://mapproxy.org
|
|
6
6
|
Author: Oliver Tonnhofer
|
|
@@ -34,8 +34,11 @@ Requires-Dist: Pillow>=9; python_version == "3.10"
|
|
|
34
34
|
Requires-Dist: Pillow>=10; python_version == "3.11"
|
|
35
35
|
Requires-Dist: Pillow>=10.1; python_version == "3.12"
|
|
36
36
|
Requires-Dist: Pillow>=11; python_version == "3.13"
|
|
37
|
-
Requires-Dist: lxml>=
|
|
37
|
+
Requires-Dist: lxml>=6
|
|
38
38
|
Requires-Dist: shapely>=2
|
|
39
|
+
Requires-Dist: jinja2
|
|
40
|
+
Requires-Dist: Babel
|
|
41
|
+
Requires-Dist: python-dateutil
|
|
39
42
|
Dynamic: author
|
|
40
43
|
Dynamic: author-email
|
|
41
44
|
Dynamic: classifier
|
|
@@ -61,6 +64,54 @@ The documentation is available at: http://mapproxy.github.io/mapproxy/latest/
|
|
|
61
64
|
|
|
62
65
|
Changes
|
|
63
66
|
-------
|
|
67
|
+
6.0.1 2025-10-29
|
|
68
|
+
~~~~~~~~~~~~~~~~
|
|
69
|
+
|
|
70
|
+
Maintenance:
|
|
71
|
+
|
|
72
|
+
- Removed code to be able to start up MapProxy without PIL.
|
|
73
|
+
|
|
74
|
+
Fixes:
|
|
75
|
+
|
|
76
|
+
- Add python-dateutil dependency to avoid errors on startup.
|
|
77
|
+
- Add ogcapi to config-schema.json to avoid warnings on startup.
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
6.0.0 2025-10-22
|
|
81
|
+
~~~~~~~~~~~~~~~~
|
|
82
|
+
|
|
83
|
+
Breaking:
|
|
84
|
+
|
|
85
|
+
- The extension for mbtiles used in MapProxy was wrong. It used `.mbtile` instead of `.mbtiles`. Existing files in
|
|
86
|
+
caches have to be renamed! Here is a small script to change all files in a directory recursively:
|
|
87
|
+
`find . -type f -name "*.mbtile" -exec sh -c 'mv "$1" "${1%.mbtile}.mbtiles"' _ {} \;`
|
|
88
|
+
- lxml was updated. The new version is much stricter in its inputs and administrators might have to adjust
|
|
89
|
+
featureinfo services to output valid HTML.
|
|
90
|
+
|
|
91
|
+
Improvements:
|
|
92
|
+
|
|
93
|
+
- New source types `ogcapitiles` and `ogcapimaps` are now available! See docs for further information.
|
|
94
|
+
- New util `gridconf-from-ogcapitilematrixset` to fetch grids from an OGC API compliant web service was added.
|
|
95
|
+
See docs for further information.
|
|
96
|
+
- MapProxy now offers an OGCAPI compliant service for OGC API Maps and OGC API Tiles. Including landing page and
|
|
97
|
+
preview maps! See docs for further information.
|
|
98
|
+
- The `SERVICE` parameter for WMS `GetMap` requests is no longer mandatory as according to spec.
|
|
99
|
+
- Added test pipeline for the documentation.
|
|
100
|
+
- The GitHub actions now have better fitting permissions, improving the security.
|
|
101
|
+
- WMTS capabilities now include `OperationsMetadata` for restful mode.
|
|
102
|
+
- TMS capabilities now include metadata similar to WMS and WMTS.
|
|
103
|
+
|
|
104
|
+
Maintenance:
|
|
105
|
+
|
|
106
|
+
- Some fixes in the documentation.
|
|
107
|
+
- As shapely is no longer optional, code to check for its existence has been removed.
|
|
108
|
+
|
|
109
|
+
Fixes:
|
|
110
|
+
|
|
111
|
+
- An error regarding unicode strings in the featureinfo parsing was fixed.
|
|
112
|
+
- An error in the debug logging of configurations was fixed
|
|
113
|
+
|
|
114
|
+
|
|
64
115
|
5.1.1 2025-10-01
|
|
65
116
|
~~~~~~~~~~~~~~~~
|
|
66
117
|
|
|
@@ -129,43 +180,6 @@ Improvements:
|
|
|
129
180
|
- The scale denominator in the WMTS capabilites is now rounded to 10 digits after the decimal place.
|
|
130
181
|
|
|
131
182
|
|
|
132
|
-
4.1.0 2025-04-29
|
|
133
|
-
~~~~~~~~~~~~~~~~
|
|
134
|
-
|
|
135
|
-
Improvements:
|
|
136
|
-
|
|
137
|
-
- It is now possible to integrate the grid name into paths for AWS buckets. This allows storage of tiles for multiple
|
|
138
|
-
grids in the same bucket.
|
|
139
|
-
- We are returning a 404 http status code instead of a 500 if no legend graphic is found for a service.
|
|
140
|
-
- We are using utf-8 in GetFeatureInfo requests now.
|
|
141
|
-
|
|
142
|
-
Maintenance:
|
|
143
|
-
|
|
144
|
-
- Updated some dependencies.
|
|
145
|
-
- Updated the GitHub runner versions.
|
|
146
|
-
- Refactored the grid.py file into multiple files.
|
|
147
|
-
- Removed the implementation of odict in favour of the builtin OrderedDict class.
|
|
148
|
-
- Added support for python 3.13.
|
|
149
|
-
- Skipping permissions tests if tests are run with root user. This is necessary to build and test MapProxy in a chroot
|
|
150
|
-
environment which is used to package MapProxy for Debian. Normal testing is not affected.
|
|
151
|
-
|
|
152
|
-
Fixes:
|
|
153
|
-
|
|
154
|
-
- Fixed deprecation warnings for utctime, sqlite, ImageMath.eval, mock_s3.
|
|
155
|
-
- Fix entrypoint.sh to create default MapProxy configurations if none are found.
|
|
156
|
-
- Allowed the trivy security scan workflow to write the results to the GitHub security tab.
|
|
157
|
-
- We are not allowing the deprecated TLS Versions 1.1 or lower for connections to servers anymore.
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
4.0.2 2025-04-10
|
|
161
|
-
~~~~~~~~~~~~~~~~
|
|
162
|
-
|
|
163
|
-
Fixes:
|
|
164
|
-
|
|
165
|
-
- Security fix to prevent XSS injections in demo pages
|
|
166
|
-
- Security fix to prevent reading file urls
|
|
167
|
-
|
|
168
|
-
|
|
169
183
|
|
|
170
184
|
Older changes
|
|
171
185
|
-------------
|
|
@@ -297,10 +297,22 @@ A list of caches for this layer. This list overrides ``sources`` for WMTS and TM
|
|
|
297
297
|
|
|
298
298
|
Limit the layer to the given min and max resolution or scale. MapProxy will return a blank image for requests outside of these boundaries (``min_res`` is inclusive, ``max_res`` exclusive). You can use either the resolution or the scale values, missing values will be interpreted as `unlimited`. Resolutions should be in meters per pixel.
|
|
299
299
|
|
|
300
|
-
The values will also appear in the capabilities documents (i.e. WMS ScaleHint and Min/MaxScaleDenominator)
|
|
300
|
+
The values will also appear in the capabilities documents (i.e. WMS ScaleHint and Min/MaxScaleDenominator),
|
|
301
|
+
or in the response to the OGC API Maps or Tiles GetCollection requests.
|
|
301
302
|
|
|
302
303
|
Please read :ref:`scale vs. resolution <scale_resolution>` for some notes on `scale`.
|
|
303
304
|
|
|
305
|
+
.. _layer_nominal_scale:
|
|
306
|
+
|
|
307
|
+
``nominal_res`` or ``nominal_scale``
|
|
308
|
+
""""""""""""""""""""""""""""""""""""
|
|
309
|
+
|
|
310
|
+
That setting is required by some OGC API Maps map requests, to establish the
|
|
311
|
+
nominal resolution of a layer, for example when one of the ``width`` or ``height`` query
|
|
312
|
+
parameters is specified (not both), but the ``scale-denominator`` one is not.
|
|
313
|
+
|
|
314
|
+
Resolutions should be in meters per pixel.
|
|
315
|
+
|
|
304
316
|
``legendurl``
|
|
305
317
|
"""""""""""""
|
|
306
318
|
|
|
@@ -560,12 +560,9 @@ MapProxy will mark all layers that use this source as ``queryable``. It also wor
|
|
|
560
560
|
|
|
561
561
|
FeatureInfo support is enabled by default for WMS. For :ref:`WMTS you need to enable FeatureInfo queries by configuring the supported formats <wmts_feature_info>`.
|
|
562
562
|
|
|
563
|
-
|
|
564
|
-
.. note:: The more advanced features :ref:`require the lxml library <lxml_install>`.
|
|
565
|
-
|
|
566
563
|
Concatenation
|
|
567
564
|
-------------
|
|
568
|
-
Feature information from different sources are concatenated as plain text, that means that XML documents may become invalid. But MapProxy can also do content-aware concatenation
|
|
565
|
+
Feature information from different sources are concatenated as plain text, that means that XML documents may become invalid. But MapProxy can also do content-aware concatenation.
|
|
569
566
|
|
|
570
567
|
HTML
|
|
571
568
|
~~~~
|
|
@@ -628,7 +625,7 @@ will result in:
|
|
|
628
625
|
XSL Transformations
|
|
629
626
|
-------------------
|
|
630
627
|
|
|
631
|
-
MapProxy supports XSL transformations for more control over feature information.
|
|
628
|
+
MapProxy supports XSL transformations for more control over feature information. You can add an XSLT script for each WMS source (incoming) and for the WMS service (outgoing).
|
|
632
629
|
|
|
633
630
|
You can use XSLT for sources to convert all incoming documents to a single, uniform format and then use outgoing XSLT scripts to transform this format to either HTML or XML/GML output.
|
|
634
631
|
|
|
@@ -149,7 +149,7 @@ You need a server script that creates the MapProxy application (see :ref:`above
|
|
|
149
149
|
To start MapProxy with Waitress and our server script (without ``.py``)::
|
|
150
150
|
|
|
151
151
|
cd /path/of/config.py/
|
|
152
|
-
waitress --listen 127.0.0.1:8080 config:application
|
|
152
|
+
waitress-serve --listen 127.0.0.1:8080 config:application
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
uWSGI
|
|
@@ -78,16 +78,16 @@ Volume-Mounts
|
|
|
78
78
|
- ``/mapproxy/config/mapproxy.yaml``: MapProxy Config
|
|
79
79
|
- ``/mapproxy/config/logging.ini``: Logging-Configuration
|
|
80
80
|
- ``/mapproxy/config/cache_data``: Cache Data dir. Make sure that this directory is writable for the mapproxy image.
|
|
81
|
-
This can be achieved with `chmod -R a+r cache_data`
|
|
81
|
+
This can be achieved with `chmod -R a+r cache_data`
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
Environment Variables
|
|
85
85
|
~~~~~~~~~~~~~~~~~~~~~
|
|
86
86
|
|
|
87
87
|
- ``MULTIAPP_MAPPROXY``: **This can only be used in nginx images.** If set to ``true``, MapProxy will start in multi app
|
|
88
|
-
mode and will run all configurations in the ``/mapproxy/config/apps`` directory as different apps. Default is ``false``.
|
|
88
|
+
mode and will run all configurations in the ``/mapproxy/config/apps`` directory as different apps. Default is ``false``.
|
|
89
89
|
- ``MULTIAPP_ALLOW_LISTINGS``: In multi app mode if set to ``true``, MapProxy lists all available apps on the root page.
|
|
90
|
-
Default is ``false``.
|
|
90
|
+
Default is ``false``.
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
Build your own image
|
|
@@ -36,12 +36,6 @@ MapProxy and most dependencies can be installed with the ``pip`` command. `Read
|
|
|
36
36
|
|
|
37
37
|
This might take a minute.
|
|
38
38
|
|
|
39
|
-
Dependencies
|
|
40
|
-
------------
|
|
41
|
-
|
|
42
|
-
Read :ref:`dependency_details` for more information about all dependencies.
|
|
43
|
-
|
|
44
|
-
|
|
45
39
|
Pillow and YAML
|
|
46
40
|
~~~~~~~~~~~~~~~
|
|
47
41
|
|
|
@@ -33,7 +33,7 @@ The current sub-commands are:
|
|
|
33
33
|
- :ref:`mapproxy_util_export`
|
|
34
34
|
- :ref:`mapproxy_defrag_compact_cache`
|
|
35
35
|
- ``autoconfig`` (see :ref:`mapproxy_util_autoconfig`)
|
|
36
|
-
|
|
36
|
+
- :ref:`mapproxy_util_gridconf_from_ogcapitilematrixset`
|
|
37
37
|
|
|
38
38
|
.. _mapproxy_util_create:
|
|
39
39
|
|
|
@@ -603,3 +603,98 @@ Defragment bundle files from ``map1_cache`` and ``map2_cache`` when they have mo
|
|
|
603
603
|
--min-percent 20 \
|
|
604
604
|
--min-mb 5 \
|
|
605
605
|
--caches map1_cache,map2_cache
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
.. _mapproxy_util_gridconf_from_ogcapitilematrixset:
|
|
609
|
+
|
|
610
|
+
``gridconf-from-ogcapitilematrixset``
|
|
611
|
+
=====================================
|
|
612
|
+
|
|
613
|
+
This sub-command let you output the tile matrix sets exposed in an OGC API
|
|
614
|
+
service that implements OGC API Tiles in the standard format of the ``grids``
|
|
615
|
+
section of the :file:`mapproxy.yml` configuration file. Only tilesets that are
|
|
616
|
+
compatible with grids supported by MapProxy will be exported.
|
|
617
|
+
|
|
618
|
+
.. program:: mapproxy-util gridconf-from-ogcapitilematrixset
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
Required arguments:
|
|
622
|
+
|
|
623
|
+
.. cmdoption:: --url=URL
|
|
624
|
+
|
|
625
|
+
The URL to the OGC API landing page.
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
Examples
|
|
629
|
+
--------
|
|
630
|
+
|
|
631
|
+
::
|
|
632
|
+
|
|
633
|
+
mapproxy-util gridconf-from-ogcapitilematrixset https://maps.gnosis.earth/ogcapi
|
|
634
|
+
|
|
635
|
+
Cannot handle https://maps.gnosis.earth/ogcapi/tileMatrixSets/CDB1GlobalGrid?f=json: Tile matrix with variableMatrixWidths are not supported
|
|
636
|
+
Cannot handle https://maps.gnosis.earth/ogcapi/tileMatrixSets/GNOSISGlobalGrid?f=json: Tile matrix with variableMatrixWidths are not supported
|
|
637
|
+
Cannot handle https://maps.gnosis.earth/ogcapi/tileMatrixSets/GoogleCRS84Quad?f=json: Tile matrix set with varying pointOfOrigin depending on tile matrix
|
|
638
|
+
Cannot handle https://maps.gnosis.earth/ogcapi/tileMatrixSets/ISEA9R?f=json: CRS http://www.opengis.net/def/crs/OGC/0/153456 is not supported
|
|
639
|
+
Configuration to add to mapproxy.yml:
|
|
640
|
+
|
|
641
|
+
grids:
|
|
642
|
+
GlobalCRS84Pixel:
|
|
643
|
+
bbox: [-180, -422, 332, 90]
|
|
644
|
+
origin: ul
|
|
645
|
+
res: [2, 1, 0.5, 0.333333333333333, 0.166666666666667, 0.0833333333333333, 0.0333333333333333,
|
|
646
|
+
0.0166666666666667, 0.00833333333333333, 0.00416666666666667, 0.0013888888888889,
|
|
647
|
+
0.00083333333333333, 0.00027777777777778, 0.0001388888888889, 8.333333333333e-05,
|
|
648
|
+
2.777777777778e-05, 8.33333333333e-06, 2.77777777778e-06, 8.3333333333e-07,
|
|
649
|
+
2.7777777778e-07, 8.333333333e-08, 2.777777778e-08, 8.33333333e-09, 2.77777778e-09,
|
|
650
|
+
1.3888889e-09]
|
|
651
|
+
srs: EPSG:4326
|
|
652
|
+
tile_size: [256, 256]
|
|
653
|
+
GlobalCRS84Scale:
|
|
654
|
+
bbox: [-180, -231.95619782843647, 463.91239565687295, 90]
|
|
655
|
+
origin: ul
|
|
656
|
+
res: [1.25764139776733, 0.628820698883665, 0.251528279553466, 0.125764139776733,
|
|
657
|
+
0.0628820698883665, 0.0251528279553466, 0.0125764139776733, 0.00628820698883665,
|
|
658
|
+
0.00251528279553466, 0.00125764139776733, 0.00062882069888367, 0.00025152827955347,
|
|
659
|
+
0.00012576413977673, 6.288206988837e-05, 2.515282795535e-05, 1.257641397767e-05,
|
|
660
|
+
6.28820698884e-06, 2.51528279553e-06, 1.25764139777e-06, 6.2882069888e-07, 2.5152827955e-07,
|
|
661
|
+
1.2576413978e-07, 6.28820699e-08, 2.515282796e-08, 1.257641398e-08, 6.288207e-09,
|
|
662
|
+
2.5152828e-09]
|
|
663
|
+
srs: EPSG:4326
|
|
664
|
+
tile_size: [256, 256]
|
|
665
|
+
WebMercatorQuad:
|
|
666
|
+
bbox: [-20037508.3427892, -20037508.342789043, 20037508.342789043, 20037508.3427892]
|
|
667
|
+
origin: ul
|
|
668
|
+
res: [156543.03392804, 78271.5169640205, 39135.7584820102, 19567.879241005, 9783.93962050256,
|
|
669
|
+
4891.96981025128, 2445.98490512564, 1222.99245256282, 611.49622628141, 305.748113140705,
|
|
670
|
+
152.874056570353, 76.4370282851763, 38.218514142588, 19.109257071294, 9.55462853564703,
|
|
671
|
+
4.77731426782352, 2.38865713391176, 1.19432856695588, 0.59716428347794, 0.29858214173897,
|
|
672
|
+
0.149291070869485, 0.0746455354347424, 0.0373227677173712, 0.0186613838586856,
|
|
673
|
+
0.0093306919293428, 0.0046653459646714, 0.0023326729823357, 0.00116633649116785,
|
|
674
|
+
0.00058316824558393, 0.00029158412279196]
|
|
675
|
+
srs: EPSG:3857
|
|
676
|
+
tile_size: [256, 256]
|
|
677
|
+
WorldCRS84Quad:
|
|
678
|
+
bbox: [-180, -90.0, 180.0, 90]
|
|
679
|
+
origin: ul
|
|
680
|
+
res: [0.703125, 0.3515625, 0.17578125, 0.087890625, 0.0439453125, 0.02197265625,
|
|
681
|
+
0.010986328125, 0.0054931640625, 0.00274658203125, 0.001373291015625, 0.0006866455078125,
|
|
682
|
+
0.00034332275390625, 0.00017166137695312, 8.583068847656e-05, 4.291534423828e-05,
|
|
683
|
+
2.145767211914e-05, 1.072883605957e-05, 5.3644180298e-06, 2.6822090149e-06,
|
|
684
|
+
1.34110450745e-06, 6.7055225372e-07, 3.3527612686e-07, 1.6763806343e-07, 8.381903172e-08,
|
|
685
|
+
4.190951586e-08, 2.095475793e-08, 1.047737896e-08, 5.23868948e-09, 2.61934474e-09,
|
|
686
|
+
1.30967237e-09]
|
|
687
|
+
srs: EPSG:4326
|
|
688
|
+
tile_size: [256, 256]
|
|
689
|
+
WorldMercatorWGS84Quad:
|
|
690
|
+
bbox: [-20037508.3427892, -20037508.342789043, 20037508.342789043, 20037508.3427892]
|
|
691
|
+
origin: ul
|
|
692
|
+
res: [156543.03392804, 78271.5169640205, 39135.7584820102, 19567.879241005, 9783.93962050256,
|
|
693
|
+
4891.96981025128, 2445.98490512564, 1222.99245256282, 611.49622628141, 305.748113140705,
|
|
694
|
+
152.874056570353, 76.4370282851763, 38.218514142588, 19.109257071294, 9.55462853564703,
|
|
695
|
+
4.77731426782352, 2.38865713391176, 1.19432856695588, 0.59716428347794, 0.29858214173897,
|
|
696
|
+
0.149291070869485, 0.0746455354347424, 0.0373227677173712, 0.0186613838586856,
|
|
697
|
+
0.0093306919293428, 0.0046653459646714, 0.0023326729823357, 0.00116633649116785,
|
|
698
|
+
0.00058316824558393, 0.00029158412279196]
|
|
699
|
+
srs: EPSG:3395
|
|
700
|
+
tile_size: [256, 256]
|