@basemaps/lambda-tiler 6.15.0
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.
- package/CHANGELOG.md +981 -0
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/build/__test__/index.test.d.ts +2 -0
- package/build/__test__/index.test.d.ts.map +1 -0
- package/build/__test__/index.test.js +45 -0
- package/build/__test__/tiff.cache.test.d.ts +2 -0
- package/build/__test__/tiff.cache.test.d.ts.map +1 -0
- package/build/__test__/tiff.cache.test.js +58 -0
- package/build/__test__/tile.cache.key.test.d.ts +2 -0
- package/build/__test__/tile.cache.key.test.d.ts.map +1 -0
- package/build/__test__/tile.cache.key.test.js +49 -0
- package/build/__test__/tile.set.cache.test.d.ts +2 -0
- package/build/__test__/tile.set.cache.test.d.ts.map +1 -0
- package/build/__test__/tile.set.cache.test.js +120 -0
- package/build/__test__/tile.set.test.d.ts +2 -0
- package/build/__test__/tile.set.test.d.ts.map +1 -0
- package/build/__test__/tile.set.test.js +16 -0
- package/build/__test__/wmts.capability.test.d.ts +2 -0
- package/build/__test__/wmts.capability.test.d.ts.map +1 -0
- package/build/__test__/wmts.capability.test.js +193 -0
- package/build/__test__/xyz.test.d.ts +2 -0
- package/build/__test__/xyz.test.d.ts.map +1 -0
- package/build/__test__/xyz.test.js +282 -0
- package/build/__test__/xyz.util.d.ts +10 -0
- package/build/__test__/xyz.util.d.ts.map +1 -0
- package/build/__test__/xyz.util.js +48 -0
- package/build/api.key.d.ts +2 -0
- package/build/api.key.d.ts.map +1 -0
- package/build/api.key.js +23 -0
- package/build/cli/dump.d.ts +2 -0
- package/build/cli/dump.d.ts.map +1 -0
- package/build/cli/dump.js +48 -0
- package/build/cli/serve.d.ts +2 -0
- package/build/cli/serve.d.ts.map +1 -0
- package/build/cli/serve.js +116 -0
- package/build/cli/tile.set.local.d.ts +12 -0
- package/build/cli/tile.set.local.d.ts.map +1 -0
- package/build/cli/tile.set.local.js +39 -0
- package/build/cli/validate.d.ts +2 -0
- package/build/cli/validate.d.ts.map +1 -0
- package/build/cli/validate.js +47 -0
- package/build/index.d.ts +4 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +29 -0
- package/build/router.d.ts +15 -0
- package/build/router.d.ts.map +1 -0
- package/build/router.js +47 -0
- package/build/routes/__test__/attribution.test.d.ts +2 -0
- package/build/routes/__test__/attribution.test.d.ts.map +1 -0
- package/build/routes/__test__/attribution.test.js +419 -0
- package/build/routes/__test__/health.test.d.ts +2 -0
- package/build/routes/__test__/health.test.d.ts.map +1 -0
- package/build/routes/__test__/health.test.js +68 -0
- package/build/routes/api.d.ts +5 -0
- package/build/routes/api.d.ts.map +1 -0
- package/build/routes/api.js +16 -0
- package/build/routes/attribution.d.ts +10 -0
- package/build/routes/attribution.d.ts.map +1 -0
- package/build/routes/attribution.js +199 -0
- package/build/routes/health.d.ts +19 -0
- package/build/routes/health.d.ts.map +1 -0
- package/build/routes/health.js +75 -0
- package/build/routes/tile.d.ts +23 -0
- package/build/routes/tile.d.ts.map +1 -0
- package/build/routes/tile.etag.d.ts +11 -0
- package/build/routes/tile.etag.d.ts.map +1 -0
- package/build/routes/tile.etag.js +29 -0
- package/build/routes/tile.js +180 -0
- package/build/tiff.cache.d.ts +17 -0
- package/build/tiff.cache.d.ts.map +1 -0
- package/build/tiff.cache.js +45 -0
- package/build/tile.set.cache.d.ts +21 -0
- package/build/tile.set.cache.d.ts.map +1 -0
- package/build/tile.set.cache.js +96 -0
- package/build/tile.set.d.ts +20 -0
- package/build/tile.set.d.ts.map +1 -0
- package/build/tile.set.js +20 -0
- package/build/tile.set.raster.d.ts +47 -0
- package/build/tile.set.raster.d.ts.map +1 -0
- package/build/tile.set.raster.js +181 -0
- package/build/tile.set.vector.d.ts +16 -0
- package/build/tile.set.vector.d.ts.map +1 -0
- package/build/tile.set.vector.js +51 -0
- package/build/validate.d.ts +16 -0
- package/build/validate.d.ts.map +1 -0
- package/build/validate.js +31 -0
- package/build/wmts.capability.d.ts +24 -0
- package/build/wmts.capability.d.ts.map +1 -0
- package/build/wmts.capability.js +173 -0
- package/bundle.sh +11 -0
- package/dist/index.js +27642 -0
- package/dist/node_modules/ansi-regex/index.js +4 -0
- package/dist/node_modules/ansi-regex/license +21 -0
- package/dist/node_modules/ansi-regex/package.json +108 -0
- package/dist/node_modules/ansi-regex/readme.md +39 -0
- package/dist/node_modules/aproba/LICENSE +14 -0
- package/dist/node_modules/aproba/README.md +94 -0
- package/dist/node_modules/aproba/index.js +105 -0
- package/dist/node_modules/aproba/package.json +62 -0
- package/dist/node_modules/are-we-there-yet/CHANGES.md +37 -0
- package/dist/node_modules/are-we-there-yet/LICENSE +5 -0
- package/dist/node_modules/are-we-there-yet/README.md +195 -0
- package/dist/node_modules/are-we-there-yet/index.js +4 -0
- package/dist/node_modules/are-we-there-yet/package.json +63 -0
- package/dist/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/dist/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/dist/node_modules/are-we-there-yet/tracker-stream.js +36 -0
- package/dist/node_modules/are-we-there-yet/tracker.js +30 -0
- package/dist/node_modules/base64-js/LICENSE +21 -0
- package/dist/node_modules/base64-js/README.md +34 -0
- package/dist/node_modules/base64-js/base64js.min.js +1 -0
- package/dist/node_modules/base64-js/index.d.ts +3 -0
- package/dist/node_modules/base64-js/index.js +150 -0
- package/dist/node_modules/base64-js/package.json +75 -0
- package/dist/node_modules/bl/.travis.yml +17 -0
- package/dist/node_modules/bl/BufferList.js +396 -0
- package/dist/node_modules/bl/LICENSE.md +13 -0
- package/dist/node_modules/bl/README.md +247 -0
- package/dist/node_modules/bl/bl.js +84 -0
- package/dist/node_modules/bl/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/dist/node_modules/bl/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/dist/node_modules/bl/node_modules/readable-stream/LICENSE +47 -0
- package/dist/node_modules/bl/node_modules/readable-stream/README.md +106 -0
- package/dist/node_modules/bl/node_modules/readable-stream/errors-browser.js +127 -0
- package/dist/node_modules/bl/node_modules/readable-stream/errors.js +116 -0
- package/dist/node_modules/bl/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/dist/node_modules/bl/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/dist/node_modules/bl/node_modules/readable-stream/package.json +97 -0
- package/dist/node_modules/bl/node_modules/readable-stream/readable-browser.js +9 -0
- package/dist/node_modules/bl/node_modules/readable-stream/readable.js +16 -0
- package/dist/node_modules/bl/package.json +69 -0
- package/dist/node_modules/bl/test/convert.js +21 -0
- package/dist/node_modules/bl/test/indexOf.js +492 -0
- package/dist/node_modules/bl/test/isBufferList.js +32 -0
- package/dist/node_modules/bl/test/test.js +869 -0
- package/dist/node_modules/buffer/AUTHORS.md +70 -0
- package/dist/node_modules/buffer/LICENSE +21 -0
- package/dist/node_modules/buffer/README.md +410 -0
- package/dist/node_modules/buffer/index.d.ts +186 -0
- package/dist/node_modules/buffer/index.js +1817 -0
- package/dist/node_modules/buffer/package.json +127 -0
- package/dist/node_modules/chownr/LICENSE +15 -0
- package/dist/node_modules/chownr/README.md +3 -0
- package/dist/node_modules/chownr/chownr.js +167 -0
- package/dist/node_modules/chownr/package.json +62 -0
- package/dist/node_modules/code-point-at/index.js +32 -0
- package/dist/node_modules/code-point-at/license +21 -0
- package/dist/node_modules/code-point-at/package.json +70 -0
- package/dist/node_modules/code-point-at/readme.md +32 -0
- package/dist/node_modules/color/LICENSE +21 -0
- package/dist/node_modules/color/README.md +123 -0
- package/dist/node_modules/color/index.js +482 -0
- package/dist/node_modules/color/package.json +72 -0
- package/dist/node_modules/color-convert/CHANGELOG.md +54 -0
- package/dist/node_modules/color-convert/LICENSE +21 -0
- package/dist/node_modules/color-convert/README.md +68 -0
- package/dist/node_modules/color-convert/conversions.js +868 -0
- package/dist/node_modules/color-convert/index.js +78 -0
- package/dist/node_modules/color-convert/package.json +81 -0
- package/dist/node_modules/color-convert/route.js +97 -0
- package/dist/node_modules/color-name/.eslintrc.json +43 -0
- package/dist/node_modules/color-name/LICENSE +8 -0
- package/dist/node_modules/color-name/README.md +11 -0
- package/dist/node_modules/color-name/index.js +152 -0
- package/dist/node_modules/color-name/package.json +54 -0
- package/dist/node_modules/color-name/test.js +7 -0
- package/dist/node_modules/color-string/LICENSE +21 -0
- package/dist/node_modules/color-string/README.md +62 -0
- package/dist/node_modules/color-string/index.js +242 -0
- package/dist/node_modules/color-string/package.json +81 -0
- package/dist/node_modules/console-control-strings/LICENSE +13 -0
- package/dist/node_modules/console-control-strings/README.md +145 -0
- package/dist/node_modules/console-control-strings/README.md~ +140 -0
- package/dist/node_modules/console-control-strings/index.js +125 -0
- package/dist/node_modules/console-control-strings/package.json +61 -0
- package/dist/node_modules/core-util-is/LICENSE +19 -0
- package/dist/node_modules/core-util-is/README.md +3 -0
- package/dist/node_modules/core-util-is/lib/util.js +107 -0
- package/dist/node_modules/core-util-is/package.json +68 -0
- package/dist/node_modules/decompress-response/index.d.ts +29 -0
- package/dist/node_modules/decompress-response/index.js +40 -0
- package/dist/node_modules/decompress-response/license +9 -0
- package/dist/node_modules/decompress-response/package.json +82 -0
- package/dist/node_modules/decompress-response/readme.md +52 -0
- package/dist/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/dist/node_modules/deep-extend/LICENSE +20 -0
- package/dist/node_modules/deep-extend/README.md +91 -0
- package/dist/node_modules/deep-extend/index.js +1 -0
- package/dist/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/dist/node_modules/deep-extend/package.json +92 -0
- package/dist/node_modules/delegates/History.md +22 -0
- package/dist/node_modules/delegates/License +20 -0
- package/dist/node_modules/delegates/Makefile +8 -0
- package/dist/node_modules/delegates/Readme.md +94 -0
- package/dist/node_modules/delegates/index.js +121 -0
- package/dist/node_modules/delegates/package.json +48 -0
- package/dist/node_modules/delegates/test/index.js +94 -0
- package/dist/node_modules/detect-libc/LICENSE +201 -0
- package/dist/node_modules/detect-libc/README.md +78 -0
- package/dist/node_modules/detect-libc/bin/detect-libc.js +18 -0
- package/dist/node_modules/detect-libc/lib/detect-libc.js +92 -0
- package/dist/node_modules/detect-libc/package.json +71 -0
- package/dist/node_modules/end-of-stream/LICENSE +21 -0
- package/dist/node_modules/end-of-stream/README.md +54 -0
- package/dist/node_modules/end-of-stream/index.js +94 -0
- package/dist/node_modules/end-of-stream/package.json +66 -0
- package/dist/node_modules/expand-template/.travis.yml +6 -0
- package/dist/node_modules/expand-template/LICENSE +21 -0
- package/dist/node_modules/expand-template/README.md +43 -0
- package/dist/node_modules/expand-template/index.js +26 -0
- package/dist/node_modules/expand-template/package.json +60 -0
- package/dist/node_modules/expand-template/test.js +67 -0
- package/dist/node_modules/fs-constants/LICENSE +21 -0
- package/dist/node_modules/fs-constants/README.md +26 -0
- package/dist/node_modules/fs-constants/browser.js +1 -0
- package/dist/node_modules/fs-constants/index.js +1 -0
- package/dist/node_modules/fs-constants/package.json +47 -0
- package/dist/node_modules/gauge/CHANGELOG.md +160 -0
- package/dist/node_modules/gauge/LICENSE +13 -0
- package/dist/node_modules/gauge/README.md +399 -0
- package/dist/node_modules/gauge/base-theme.js +14 -0
- package/dist/node_modules/gauge/error.js +24 -0
- package/dist/node_modules/gauge/has-color.js +12 -0
- package/dist/node_modules/gauge/index.js +233 -0
- package/dist/node_modules/gauge/package.json +91 -0
- package/dist/node_modules/gauge/plumbing.js +48 -0
- package/dist/node_modules/gauge/process.js +3 -0
- package/dist/node_modules/gauge/progress-bar.js +35 -0
- package/dist/node_modules/gauge/render-template.js +181 -0
- package/dist/node_modules/gauge/set-immediate.js +7 -0
- package/dist/node_modules/gauge/set-interval.js +3 -0
- package/dist/node_modules/gauge/spin.js +5 -0
- package/dist/node_modules/gauge/template-item.js +73 -0
- package/dist/node_modules/gauge/theme-set.js +115 -0
- package/dist/node_modules/gauge/themes.js +54 -0
- package/dist/node_modules/gauge/wide-truncate.js +25 -0
- package/dist/node_modules/github-from-package/.travis.yml +4 -0
- package/dist/node_modules/github-from-package/LICENSE +18 -0
- package/dist/node_modules/github-from-package/example/package.json +8 -0
- package/dist/node_modules/github-from-package/example/url.js +3 -0
- package/dist/node_modules/github-from-package/index.js +17 -0
- package/dist/node_modules/github-from-package/package.json +58 -0
- package/dist/node_modules/github-from-package/readme.markdown +53 -0
- package/dist/node_modules/github-from-package/test/a.json +8 -0
- package/dist/node_modules/github-from-package/test/b.json +5 -0
- package/dist/node_modules/github-from-package/test/c.json +5 -0
- package/dist/node_modules/github-from-package/test/d.json +7 -0
- package/dist/node_modules/github-from-package/test/e.json +5 -0
- package/dist/node_modules/github-from-package/test/url.js +19 -0
- package/dist/node_modules/has-unicode/LICENSE +14 -0
- package/dist/node_modules/has-unicode/README.md +43 -0
- package/dist/node_modules/has-unicode/index.js +16 -0
- package/dist/node_modules/has-unicode/package.json +58 -0
- package/dist/node_modules/ieee754/LICENSE +11 -0
- package/dist/node_modules/ieee754/README.md +51 -0
- package/dist/node_modules/ieee754/index.d.ts +10 -0
- package/dist/node_modules/ieee754/index.js +85 -0
- package/dist/node_modules/ieee754/package.json +84 -0
- package/dist/node_modules/inherits/LICENSE +16 -0
- package/dist/node_modules/inherits/README.md +42 -0
- package/dist/node_modules/inherits/inherits.js +9 -0
- package/dist/node_modules/inherits/inherits_browser.js +27 -0
- package/dist/node_modules/inherits/package.json +65 -0
- package/dist/node_modules/ini/LICENSE +15 -0
- package/dist/node_modules/ini/README.md +102 -0
- package/dist/node_modules/ini/ini.js +206 -0
- package/dist/node_modules/ini/package.json +66 -0
- package/dist/node_modules/is-arrayish/LICENSE +21 -0
- package/dist/node_modules/is-arrayish/README.md +16 -0
- package/dist/node_modules/is-arrayish/index.js +9 -0
- package/dist/node_modules/is-arrayish/package.json +77 -0
- package/dist/node_modules/is-arrayish/yarn-error.log +1443 -0
- package/dist/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/dist/node_modules/is-fullwidth-code-point/license +21 -0
- package/dist/node_modules/is-fullwidth-code-point/package.json +77 -0
- package/dist/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/dist/node_modules/isarray/.travis.yml +4 -0
- package/dist/node_modules/isarray/Makefile +6 -0
- package/dist/node_modules/isarray/README.md +60 -0
- package/dist/node_modules/isarray/component.json +19 -0
- package/dist/node_modules/isarray/index.js +5 -0
- package/dist/node_modules/isarray/package.json +73 -0
- package/dist/node_modules/isarray/test.js +20 -0
- package/dist/node_modules/lru-cache/LICENSE +15 -0
- package/dist/node_modules/lru-cache/README.md +166 -0
- package/dist/node_modules/lru-cache/index.js +334 -0
- package/dist/node_modules/lru-cache/package.json +69 -0
- package/dist/node_modules/mimic-response/index.d.ts +17 -0
- package/dist/node_modules/mimic-response/index.js +38 -0
- package/dist/node_modules/mimic-response/license +9 -0
- package/dist/node_modules/mimic-response/package.json +74 -0
- package/dist/node_modules/mimic-response/readme.md +57 -0
- package/dist/node_modules/minimist/.travis.yml +8 -0
- package/dist/node_modules/minimist/LICENSE +18 -0
- package/dist/node_modules/minimist/example/parse.js +2 -0
- package/dist/node_modules/minimist/index.js +245 -0
- package/dist/node_modules/minimist/package.json +74 -0
- package/dist/node_modules/minimist/readme.markdown +95 -0
- package/dist/node_modules/minimist/test/all_bool.js +32 -0
- package/dist/node_modules/minimist/test/bool.js +178 -0
- package/dist/node_modules/minimist/test/dash.js +31 -0
- package/dist/node_modules/minimist/test/default_bool.js +35 -0
- package/dist/node_modules/minimist/test/dotted.js +22 -0
- package/dist/node_modules/minimist/test/kv_short.js +16 -0
- package/dist/node_modules/minimist/test/long.js +31 -0
- package/dist/node_modules/minimist/test/num.js +36 -0
- package/dist/node_modules/minimist/test/parse.js +197 -0
- package/dist/node_modules/minimist/test/parse_modified.js +9 -0
- package/dist/node_modules/minimist/test/proto.js +44 -0
- package/dist/node_modules/minimist/test/short.js +67 -0
- package/dist/node_modules/minimist/test/stop_early.js +15 -0
- package/dist/node_modules/minimist/test/unknown.js +102 -0
- package/dist/node_modules/minimist/test/whitespace.js +8 -0
- package/dist/node_modules/mkdirp-classic/LICENSE +21 -0
- package/dist/node_modules/mkdirp-classic/README.md +18 -0
- package/dist/node_modules/mkdirp-classic/index.js +98 -0
- package/dist/node_modules/mkdirp-classic/package.json +47 -0
- package/dist/node_modules/napi-build-utils/LICENSE +21 -0
- package/dist/node_modules/napi-build-utils/README.md +48 -0
- package/dist/node_modules/napi-build-utils/index.js +213 -0
- package/dist/node_modules/napi-build-utils/index.md +81 -0
- package/dist/node_modules/napi-build-utils/package.json +68 -0
- package/dist/node_modules/node-abi/.github/workflows/update-abi.yml +41 -0
- package/dist/node_modules/node-abi/.travis.yml +17 -0
- package/dist/node_modules/node-abi/CODE_OF_CONDUCT.md +73 -0
- package/dist/node_modules/node-abi/CONTRIBUTING.md +53 -0
- package/dist/node_modules/node-abi/LICENSE +21 -0
- package/dist/node_modules/node-abi/README.md +50 -0
- package/dist/node_modules/node-abi/abi_registry.json +144 -0
- package/dist/node_modules/node-abi/index.js +176 -0
- package/dist/node_modules/node-abi/node_modules/semver/CHANGELOG.md +39 -0
- package/dist/node_modules/node-abi/node_modules/semver/LICENSE +15 -0
- package/dist/node_modules/node-abi/node_modules/semver/README.md +412 -0
- package/dist/node_modules/node-abi/node_modules/semver/bin/semver +160 -0
- package/dist/node_modules/node-abi/node_modules/semver/package.json +60 -0
- package/dist/node_modules/node-abi/node_modules/semver/range.bnf +16 -0
- package/dist/node_modules/node-abi/node_modules/semver/semver.js +1483 -0
- package/dist/node_modules/node-abi/package.json +65 -0
- package/dist/node_modules/node-abi/scripts/update-abi-registry.js +119 -0
- package/dist/node_modules/node-abi/test/index.js +174 -0
- package/dist/node_modules/node-addon-api/CHANGELOG.md +722 -0
- package/dist/node_modules/node-addon-api/LICENSE.md +13 -0
- package/dist/node_modules/node-addon-api/README.md +293 -0
- package/dist/node_modules/node-addon-api/common.gypi +21 -0
- package/dist/node_modules/node-addon-api/except.gypi +16 -0
- package/dist/node_modules/node-addon-api/index.js +11 -0
- package/dist/node_modules/node-addon-api/napi-inl.deprecated.h +192 -0
- package/dist/node_modules/node-addon-api/napi-inl.h +5671 -0
- package/dist/node_modules/node-addon-api/napi.h +2727 -0
- package/dist/node_modules/node-addon-api/node_api.gyp +9 -0
- package/dist/node_modules/node-addon-api/noexcept.gypi +16 -0
- package/dist/node_modules/node-addon-api/nothing.c +0 -0
- package/dist/node_modules/node-addon-api/package-support.json +21 -0
- package/dist/node_modules/node-addon-api/package.json +393 -0
- package/dist/node_modules/node-addon-api/tools/README.md +73 -0
- package/dist/node_modules/node-addon-api/tools/check-napi.js +100 -0
- package/dist/node_modules/node-addon-api/tools/clang-format.js +67 -0
- package/dist/node_modules/node-addon-api/tools/conversion.js +309 -0
- package/dist/node_modules/npmlog/CHANGELOG.md +49 -0
- package/dist/node_modules/npmlog/LICENSE +15 -0
- package/dist/node_modules/npmlog/README.md +216 -0
- package/dist/node_modules/npmlog/log.js +309 -0
- package/dist/node_modules/npmlog/package.json +61 -0
- package/dist/node_modules/number-is-nan/index.js +4 -0
- package/dist/node_modules/number-is-nan/license +21 -0
- package/dist/node_modules/number-is-nan/package.json +67 -0
- package/dist/node_modules/number-is-nan/readme.md +28 -0
- package/dist/node_modules/object-assign/index.js +90 -0
- package/dist/node_modules/object-assign/license +21 -0
- package/dist/node_modules/object-assign/package.json +74 -0
- package/dist/node_modules/object-assign/readme.md +61 -0
- package/dist/node_modules/once/LICENSE +15 -0
- package/dist/node_modules/once/README.md +79 -0
- package/dist/node_modules/once/once.js +42 -0
- package/dist/node_modules/once/package.json +68 -0
- package/dist/node_modules/prebuild-install/CHANGELOG.md +81 -0
- package/dist/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/dist/node_modules/prebuild-install/LICENSE +21 -0
- package/dist/node_modules/prebuild-install/README.md +139 -0
- package/dist/node_modules/prebuild-install/asset.js +44 -0
- package/dist/node_modules/prebuild-install/bin.js +78 -0
- package/dist/node_modules/prebuild-install/download.js +142 -0
- package/dist/node_modules/prebuild-install/error.js +14 -0
- package/dist/node_modules/prebuild-install/help.txt +16 -0
- package/dist/node_modules/prebuild-install/index.js +1 -0
- package/dist/node_modules/prebuild-install/log.js +25 -0
- package/dist/node_modules/prebuild-install/package.json +127 -0
- package/dist/node_modules/prebuild-install/proxy.js +35 -0
- package/dist/node_modules/prebuild-install/rc.js +60 -0
- package/dist/node_modules/prebuild-install/util.js +143 -0
- package/dist/node_modules/process-nextick-args/index.js +45 -0
- package/dist/node_modules/process-nextick-args/license.md +19 -0
- package/dist/node_modules/process-nextick-args/package.json +50 -0
- package/dist/node_modules/process-nextick-args/readme.md +18 -0
- package/dist/node_modules/pump/.travis.yml +5 -0
- package/dist/node_modules/pump/LICENSE +21 -0
- package/dist/node_modules/pump/README.md +65 -0
- package/dist/node_modules/pump/index.js +82 -0
- package/dist/node_modules/pump/package.json +60 -0
- package/dist/node_modules/pump/test-browser.js +66 -0
- package/dist/node_modules/pump/test-node.js +53 -0
- package/dist/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/dist/node_modules/rc/LICENSE.BSD +26 -0
- package/dist/node_modules/rc/LICENSE.MIT +24 -0
- package/dist/node_modules/rc/README.md +227 -0
- package/dist/node_modules/rc/browser.js +7 -0
- package/dist/node_modules/rc/cli.js +4 -0
- package/dist/node_modules/rc/index.js +53 -0
- package/dist/node_modules/rc/lib/utils.js +104 -0
- package/dist/node_modules/rc/package.json +64 -0
- package/dist/node_modules/rc/test/ini.js +16 -0
- package/dist/node_modules/rc/test/nested-env-vars.js +50 -0
- package/dist/node_modules/rc/test/test.js +59 -0
- package/dist/node_modules/readable-stream/.travis.yml +34 -0
- package/dist/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/dist/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/dist/node_modules/readable-stream/LICENSE +47 -0
- package/dist/node_modules/readable-stream/README.md +58 -0
- package/dist/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/dist/node_modules/readable-stream/duplex-browser.js +1 -0
- package/dist/node_modules/readable-stream/duplex.js +1 -0
- package/dist/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/dist/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/dist/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/dist/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/dist/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/dist/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/dist/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/dist/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/dist/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/dist/node_modules/readable-stream/package.json +81 -0
- package/dist/node_modules/readable-stream/passthrough.js +1 -0
- package/dist/node_modules/readable-stream/readable-browser.js +7 -0
- package/dist/node_modules/readable-stream/readable.js +19 -0
- package/dist/node_modules/readable-stream/transform.js +1 -0
- package/dist/node_modules/readable-stream/writable-browser.js +1 -0
- package/dist/node_modules/readable-stream/writable.js +8 -0
- package/dist/node_modules/safe-buffer/LICENSE +21 -0
- package/dist/node_modules/safe-buffer/README.md +584 -0
- package/dist/node_modules/safe-buffer/index.d.ts +187 -0
- package/dist/node_modules/safe-buffer/index.js +62 -0
- package/dist/node_modules/safe-buffer/package.json +64 -0
- package/dist/node_modules/semver/CHANGELOG.md +111 -0
- package/dist/node_modules/semver/LICENSE +15 -0
- package/dist/node_modules/semver/README.md +566 -0
- package/dist/node_modules/semver/bin/semver.js +173 -0
- package/dist/node_modules/semver/classes/comparator.js +135 -0
- package/dist/node_modules/semver/classes/index.js +5 -0
- package/dist/node_modules/semver/classes/range.js +510 -0
- package/dist/node_modules/semver/classes/semver.js +287 -0
- package/dist/node_modules/semver/functions/clean.js +6 -0
- package/dist/node_modules/semver/functions/cmp.js +48 -0
- package/dist/node_modules/semver/functions/coerce.js +51 -0
- package/dist/node_modules/semver/functions/compare-build.js +7 -0
- package/dist/node_modules/semver/functions/compare-loose.js +3 -0
- package/dist/node_modules/semver/functions/compare.js +5 -0
- package/dist/node_modules/semver/functions/diff.js +23 -0
- package/dist/node_modules/semver/functions/eq.js +3 -0
- package/dist/node_modules/semver/functions/gt.js +3 -0
- package/dist/node_modules/semver/functions/gte.js +3 -0
- package/dist/node_modules/semver/functions/inc.js +15 -0
- package/dist/node_modules/semver/functions/lt.js +3 -0
- package/dist/node_modules/semver/functions/lte.js +3 -0
- package/dist/node_modules/semver/functions/major.js +3 -0
- package/dist/node_modules/semver/functions/minor.js +3 -0
- package/dist/node_modules/semver/functions/neq.js +3 -0
- package/dist/node_modules/semver/functions/parse.js +33 -0
- package/dist/node_modules/semver/functions/patch.js +3 -0
- package/dist/node_modules/semver/functions/prerelease.js +6 -0
- package/dist/node_modules/semver/functions/rcompare.js +3 -0
- package/dist/node_modules/semver/functions/rsort.js +3 -0
- package/dist/node_modules/semver/functions/satisfies.js +10 -0
- package/dist/node_modules/semver/functions/sort.js +3 -0
- package/dist/node_modules/semver/functions/valid.js +6 -0
- package/dist/node_modules/semver/index.js +48 -0
- package/dist/node_modules/semver/internal/constants.js +17 -0
- package/dist/node_modules/semver/internal/debug.js +9 -0
- package/dist/node_modules/semver/internal/identifiers.js +23 -0
- package/dist/node_modules/semver/internal/parse-options.js +11 -0
- package/dist/node_modules/semver/internal/re.js +182 -0
- package/dist/node_modules/semver/package.json +73 -0
- package/dist/node_modules/semver/preload.js +2 -0
- package/dist/node_modules/semver/range.bnf +16 -0
- package/dist/node_modules/semver/ranges/gtr.js +4 -0
- package/dist/node_modules/semver/ranges/intersects.js +7 -0
- package/dist/node_modules/semver/ranges/ltr.js +4 -0
- package/dist/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/dist/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/dist/node_modules/semver/ranges/min-version.js +60 -0
- package/dist/node_modules/semver/ranges/outside.js +80 -0
- package/dist/node_modules/semver/ranges/simplify.js +44 -0
- package/dist/node_modules/semver/ranges/subset.js +222 -0
- package/dist/node_modules/semver/ranges/to-comparators.js +8 -0
- package/dist/node_modules/semver/ranges/valid.js +11 -0
- package/dist/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/dist/node_modules/set-blocking/LICENSE.txt +14 -0
- package/dist/node_modules/set-blocking/README.md +31 -0
- package/dist/node_modules/set-blocking/index.js +7 -0
- package/dist/node_modules/set-blocking/package.json +70 -0
- package/dist/node_modules/sharp/LICENSE +191 -0
- package/dist/node_modules/sharp/README.md +117 -0
- package/dist/node_modules/sharp/binding.gyp +230 -0
- package/dist/node_modules/sharp/build/Release/sharp.node +0 -0
- package/dist/node_modules/sharp/install/can-compile.js +11 -0
- package/dist/node_modules/sharp/install/dll-copy.js +37 -0
- package/dist/node_modules/sharp/install/libvips.js +180 -0
- package/dist/node_modules/sharp/lib/agent.js +40 -0
- package/dist/node_modules/sharp/lib/channel.js +167 -0
- package/dist/node_modules/sharp/lib/colour.js +130 -0
- package/dist/node_modules/sharp/lib/composite.js +178 -0
- package/dist/node_modules/sharp/lib/constructor.js +392 -0
- package/dist/node_modules/sharp/lib/index.js +13 -0
- package/dist/node_modules/sharp/lib/input.js +429 -0
- package/dist/node_modules/sharp/lib/is.js +129 -0
- package/dist/node_modules/sharp/lib/libvips.js +123 -0
- package/dist/node_modules/sharp/lib/operation.js +648 -0
- package/dist/node_modules/sharp/lib/output.js +1035 -0
- package/dist/node_modules/sharp/lib/platform.js +25 -0
- package/dist/node_modules/sharp/lib/resize.js +454 -0
- package/dist/node_modules/sharp/lib/utility.js +179 -0
- package/dist/node_modules/sharp/package.json +427 -0
- package/dist/node_modules/sharp/src/common.cc +827 -0
- package/dist/node_modules/sharp/src/common.h +308 -0
- package/dist/node_modules/sharp/src/libvips/cplusplus/VConnection.cpp +178 -0
- package/dist/node_modules/sharp/src/libvips/cplusplus/VError.cpp +50 -0
- package/dist/node_modules/sharp/src/libvips/cplusplus/VImage.cpp +1467 -0
- package/dist/node_modules/sharp/src/libvips/cplusplus/VInterpolate.cpp +76 -0
- package/dist/node_modules/sharp/src/libvips/cplusplus/vips-operators.cpp +3526 -0
- package/dist/node_modules/sharp/src/metadata.cc +271 -0
- package/dist/node_modules/sharp/src/metadata.h +90 -0
- package/dist/node_modules/sharp/src/operations.cc +285 -0
- package/dist/node_modules/sharp/src/operations.h +102 -0
- package/dist/node_modules/sharp/src/pipeline.cc +1516 -0
- package/dist/node_modules/sharp/src/pipeline.h +325 -0
- package/dist/node_modules/sharp/src/sharp.cc +52 -0
- package/dist/node_modules/sharp/src/stats.cc +193 -0
- package/dist/node_modules/sharp/src/stats.h +70 -0
- package/dist/node_modules/sharp/src/utilities.cc +243 -0
- package/dist/node_modules/sharp/src/utilities.h +29 -0
- package/dist/node_modules/sharp/vendor/8.10.6/THIRD-PARTY-NOTICES.md +42 -0
- package/dist/node_modules/sharp/vendor/8.10.6/lib/libvips-cpp.so.42 +0 -0
- package/dist/node_modules/sharp/vendor/8.10.6/platform.json +1 -0
- package/dist/node_modules/sharp/vendor/8.10.6/versions.json +31 -0
- package/dist/node_modules/signal-exit/LICENSE.txt +16 -0
- package/dist/node_modules/signal-exit/README.md +39 -0
- package/dist/node_modules/signal-exit/index.js +200 -0
- package/dist/node_modules/signal-exit/package.json +66 -0
- package/dist/node_modules/signal-exit/signals.js +53 -0
- package/dist/node_modules/simple-concat/.travis.yml +3 -0
- package/dist/node_modules/simple-concat/LICENSE +20 -0
- package/dist/node_modules/simple-concat/README.md +44 -0
- package/dist/node_modules/simple-concat/index.js +15 -0
- package/dist/node_modules/simple-concat/package.json +72 -0
- package/dist/node_modules/simple-concat/test/basic.js +41 -0
- package/dist/node_modules/simple-get/LICENSE +20 -0
- package/dist/node_modules/simple-get/README.md +319 -0
- package/dist/node_modules/simple-get/index.js +99 -0
- package/dist/node_modules/simple-get/package.json +79 -0
- package/dist/node_modules/simple-swizzle/LICENSE +21 -0
- package/dist/node_modules/simple-swizzle/README.md +39 -0
- package/dist/node_modules/simple-swizzle/index.js +29 -0
- package/dist/node_modules/simple-swizzle/package.json +71 -0
- package/dist/node_modules/string-width/index.js +37 -0
- package/dist/node_modules/string-width/license +21 -0
- package/dist/node_modules/string-width/package.json +89 -0
- package/dist/node_modules/string-width/readme.md +42 -0
- package/dist/node_modules/string_decoder/.travis.yml +50 -0
- package/dist/node_modules/string_decoder/LICENSE +48 -0
- package/dist/node_modules/string_decoder/README.md +47 -0
- package/dist/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/dist/node_modules/string_decoder/package.json +61 -0
- package/dist/node_modules/strip-ansi/index.js +6 -0
- package/dist/node_modules/strip-ansi/license +21 -0
- package/dist/node_modules/strip-ansi/package.json +102 -0
- package/dist/node_modules/strip-ansi/readme.md +33 -0
- package/dist/node_modules/strip-json-comments/index.js +70 -0
- package/dist/node_modules/strip-json-comments/license +21 -0
- package/dist/node_modules/strip-json-comments/package.json +74 -0
- package/dist/node_modules/strip-json-comments/readme.md +64 -0
- package/dist/node_modules/tar-fs/.travis.yml +6 -0
- package/dist/node_modules/tar-fs/LICENSE +21 -0
- package/dist/node_modules/tar-fs/README.md +165 -0
- package/dist/node_modules/tar-fs/index.js +351 -0
- package/dist/node_modules/tar-fs/package.json +69 -0
- package/dist/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/dist/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/dist/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/dist/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/dist/node_modules/tar-fs/test/index.js +346 -0
- package/dist/node_modules/tar-stream/LICENSE +21 -0
- package/dist/node_modules/tar-stream/README.md +168 -0
- package/dist/node_modules/tar-stream/extract.js +257 -0
- package/dist/node_modules/tar-stream/headers.js +295 -0
- package/dist/node_modules/tar-stream/index.js +2 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/LICENSE +47 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/README.md +106 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/errors-browser.js +127 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/errors.js +116 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/package.json +97 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/readable-browser.js +9 -0
- package/dist/node_modules/tar-stream/node_modules/readable-stream/readable.js +16 -0
- package/dist/node_modules/tar-stream/pack.js +255 -0
- package/dist/node_modules/tar-stream/package.json +90 -0
- package/dist/node_modules/tar-stream/sandbox.js +11 -0
- package/dist/node_modules/tunnel-agent/LICENSE +55 -0
- package/dist/node_modules/tunnel-agent/README.md +4 -0
- package/dist/node_modules/tunnel-agent/index.js +244 -0
- package/dist/node_modules/tunnel-agent/package.json +56 -0
- package/dist/node_modules/util-deprecate/History.md +16 -0
- package/dist/node_modules/util-deprecate/LICENSE +24 -0
- package/dist/node_modules/util-deprecate/README.md +53 -0
- package/dist/node_modules/util-deprecate/browser.js +67 -0
- package/dist/node_modules/util-deprecate/node.js +6 -0
- package/dist/node_modules/util-deprecate/package.json +58 -0
- package/dist/node_modules/wide-align/LICENSE +14 -0
- package/dist/node_modules/wide-align/README.md +47 -0
- package/dist/node_modules/wide-align/align.js +65 -0
- package/dist/node_modules/wide-align/package.json +66 -0
- package/dist/node_modules/wrappy/LICENSE +15 -0
- package/dist/node_modules/wrappy/README.md +36 -0
- package/dist/node_modules/wrappy/package.json +58 -0
- package/dist/node_modules/wrappy/wrappy.js +33 -0
- package/dist/node_modules/yallist/LICENSE +15 -0
- package/dist/node_modules/yallist/README.md +204 -0
- package/dist/node_modules/yallist/iterator.js +8 -0
- package/dist/node_modules/yallist/package.json +62 -0
- package/dist/node_modules/yallist/yallist.js +426 -0
- package/dist/package-lock.json +507 -0
- package/dist/package.json +62 -0
- package/dist/static/expected_tile_2193_153_255_z7.png +0 -0
- package/dist/static/expected_tile_NZTM2000Quad_30_33_z6.png +0 -0
- package/dist/static/expected_tile_WebMercatorQuad_252_156_z8.png +0 -0
- package/package.json +64 -0
- package/src/__test__/index.test.ts +57 -0
- package/src/__test__/tiff.cache.test.ts +73 -0
- package/src/__test__/tile.cache.key.test.ts +56 -0
- package/src/__test__/tile.set.cache.test.ts +143 -0
- package/src/__test__/tile.set.test.ts +19 -0
- package/src/__test__/wmts.capability.test.ts +265 -0
- package/src/__test__/xyz.test.ts +333 -0
- package/src/__test__/xyz.util.ts +58 -0
- package/src/api.key.ts +23 -0
- package/src/cli/dump.ts +62 -0
- package/src/cli/serve.ts +148 -0
- package/src/cli/tile.set.local.ts +51 -0
- package/src/cli/validate.ts +49 -0
- package/src/index.ts +31 -0
- package/src/router.ts +56 -0
- package/src/routes/__test__/attribution.test.ts +441 -0
- package/src/routes/__test__/health.test.ts +89 -0
- package/src/routes/api.ts +19 -0
- package/src/routes/attribution.ts +245 -0
- package/src/routes/health.ts +84 -0
- package/src/routes/tile.etag.ts +36 -0
- package/src/routes/tile.ts +198 -0
- package/src/tiff.cache.ts +51 -0
- package/src/tile.set.cache.ts +107 -0
- package/src/tile.set.raster.ts +209 -0
- package/src/tile.set.ts +44 -0
- package/src/tile.set.vector.ts +50 -0
- package/src/validate.ts +32 -0
- package/src/wmts.capability.ts +203 -0
- package/static/expected_tile_2193_153_255_z7.png +0 -0
- package/static/expected_tile_NZTM2000Quad_30_33_z6.png +0 -0
- package/static/expected_tile_WebMercatorQuad_252_156_z8.png +0 -0
- package/test-dump.js +6 -0
- package/test-imagery.js +3 -0
- package/tsconfig.json +15 -0
- package/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,981 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [6.15.0](https://github.com/linz/basemaps/compare/v6.14.2...v6.15.0) (2021-11-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **lambda-tiler:** publish the tiler so `@basemaps/server` can use it ([#1991](https://github.com/linz/basemaps/issues/1991)) ([c1d7477](https://github.com/linz/basemaps/commit/c1d74773a94c643d1a60e84ef8005fc505a88126))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [6.12.1](https://github.com/linz/basemaps/compare/v6.12.0...v6.12.1) (2021-10-19)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **lambda-tiler:** cleanup tiff cache everytime a new tiff is initalized ([#1900](https://github.com/linz/basemaps/issues/1900)) ([bfd52af](https://github.com/linz/basemaps/commit/bfd52afc810398a03800893a10313a2eb1a5834a))
|
|
23
|
+
* **lambda-tiler:** Replace the encoded braces in stylejson url. ([#1912](https://github.com/linz/basemaps/issues/1912)) ([e51d038](https://github.com/linz/basemaps/commit/e51d0380b21110ff5585804fae14baf92a588352))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# [6.12.0](https://github.com/linz/basemaps/compare/v6.11.0...v6.12.0) (2021-10-05)
|
|
30
|
+
|
|
31
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# [6.11.0](https://github.com/linz/basemaps/compare/v6.10.1...v6.11.0) (2021-10-03)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* **lambda-tiler:** do not create a new requestId for test tile creation ([#1876](https://github.com/linz/basemaps/issues/1876)) ([f6946da](https://github.com/linz/basemaps/commit/f6946dad47bb91b3c75a89237a917ed925ffc818))
|
|
43
|
+
* **lambda-tiler:** limit the tiff memory cache to 256MB of imagery ([#1882](https://github.com/linz/basemaps/issues/1882)) ([2bf0bdc](https://github.com/linz/basemaps/commit/2bf0bdc39c191a7bb7a8e8e2277160a357248386))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* **server:** add ability to serve a folder full of tiffs ([#1889](https://github.com/linz/basemaps/issues/1889)) ([adefde1](https://github.com/linz/basemaps/commit/adefde176ce03db5c6c978d8b85a11fc7cd15693))
|
|
49
|
+
* **server:** use the lambda handler directly ([#1870](https://github.com/linz/basemaps/issues/1870)) ([408ff56](https://github.com/linz/basemaps/commit/408ff5654cc04aae35d05eb5bbc47a51f99ec5b2))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# [6.10.0](https://github.com/linz/basemaps/compare/v6.9.1...v6.10.0) (2021-09-22)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* **lambda-tiler:** clear timeout if request succeeds ([#1874](https://github.com/linz/basemaps/issues/1874)) ([49183ca](https://github.com/linz/basemaps/commit/49183ca6b154d91b11cd493f88164c346430e369))
|
|
61
|
+
* **lambda-tiler:** move to NZTM2000Quad for health check endpoint ([#1867](https://github.com/linz/basemaps/issues/1867)) ([d4613f0](https://github.com/linz/basemaps/commit/d4613f04f1081f785831488ea53bc8d8da7aae70))
|
|
62
|
+
* bundle esm into commonjs for serving ([#1861](https://github.com/linz/basemaps/issues/1861)) ([ff4490b](https://github.com/linz/basemaps/commit/ff4490b96648ee090055d60154d718c90b9afe97))
|
|
63
|
+
* correctly bundle with esm modules ([#1858](https://github.com/linz/basemaps/issues/1858)) ([708a22e](https://github.com/linz/basemaps/commit/708a22ec1006c25cf2c057b75f61cc813e943aac))
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
* **lambda-tiler:** track slow requests ([#1871](https://github.com/linz/basemaps/issues/1871)) ([b436e8b](https://github.com/linz/basemaps/commit/b436e8ba77b80b03239cc5c04cd9d7dfb1388f78))
|
|
69
|
+
* replace s3fs with chunkd/fs ([#1859](https://github.com/linz/basemaps/issues/1859)) ([9b6f2d3](https://github.com/linz/basemaps/commit/9b6f2d3609c336f96c2ae32246f241cb396e71c8))
|
|
70
|
+
* **lambda-tiler:** track hash of apikey ([#1855](https://github.com/linz/basemaps/issues/1855)) ([f8a4bef](https://github.com/linz/basemaps/commit/f8a4bef096095c09f5348af97b3f25a338817e87))
|
|
71
|
+
* switch to esm modules ([#1857](https://github.com/linz/basemaps/issues/1857)) ([75bdff8](https://github.com/linz/basemaps/commit/75bdff8da35104f10f6b6ecf58a2c6006245af6e))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## [6.9.1](https://github.com/linz/basemaps/compare/v6.9.0...v6.9.1) (2021-09-09)
|
|
78
|
+
|
|
79
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# [6.9.0](https://github.com/linz/basemaps/compare/v6.8.0...v6.9.0) (2021-09-09)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
* **lambda-tiler:** force wmts to be ServiceTypeVersion 1.0.0 ([#1836](https://github.com/linz/basemaps/issues/1836)) ([8353774](https://github.com/linz/basemaps/commit/835377413417c58e4cca8bb4663aa43cc37043ff))
|
|
91
|
+
* **lambda-tiler:** remove console.log ([#1841](https://github.com/linz/basemaps/issues/1841)) ([723dbcc](https://github.com/linz/basemaps/commit/723dbcce8330ed588068fc2904c9476f6bbbd957))
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
* **tiler-sharp:** start tracking tile composing performance ([#1838](https://github.com/linz/basemaps/issues/1838)) ([b6cff4d](https://github.com/linz/basemaps/commit/b6cff4d982595f2bdd2dd16362c59500d2d8119e))
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# [6.8.0](https://github.com/linz/basemaps/compare/v6.7.0...v6.8.0) (2021-09-01)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Features
|
|
106
|
+
|
|
107
|
+
* **lambda-tiler:** remove `@basemaps/lambda` and replace with `@linzjs/lambda` ([#1821](https://github.com/linz/basemaps/issues/1821)) ([cb22b3d](https://github.com/linz/basemaps/commit/cb22b3d2c62b7430839f3e35c18dd96a162fb39a))
|
|
108
|
+
* **server:** create a standalone express server ([#1819](https://github.com/linz/basemaps/issues/1819)) ([83488af](https://github.com/linz/basemaps/commit/83488af658a3ed8f3080dd2ea9f120ac3abd2444))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
# [6.7.0](https://github.com/linz/basemaps/compare/v6.6.1...v6.7.0) (2021-08-15)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### Bug Fixes
|
|
118
|
+
|
|
119
|
+
* throw 500 on health failure ([#1795](https://github.com/linz/basemaps/issues/1795)) ([75bd6ae](https://github.com/linz/basemaps/commit/75bd6ae7f6a018acff4d5a27c58680eaa176aaa2))
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Features
|
|
123
|
+
|
|
124
|
+
* **lambda-tiler:** Support both aerial and vector basemap urls in style json. ([#1811](https://github.com/linz/basemaps/issues/1811)) ([9d30db8](https://github.com/linz/basemaps/commit/9d30db82d13bf84690c463644df664ab4c6735ce))
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
## [6.6.1](https://github.com/linz/basemaps/compare/v6.6.0...v6.6.1) (2021-07-29)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### Bug Fixes
|
|
134
|
+
|
|
135
|
+
* correct cache id between NZTMQuad and 3857 ([#1793](https://github.com/linz/basemaps/issues/1793)) ([ace31c7](https://github.com/linz/basemaps/commit/ace31c761fad5471ecd0c0eb85e53f10411bdabb))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
# [6.6.0](https://github.com/linz/basemaps/compare/v6.5.0...v6.6.0) (2021-07-29)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* **config:** do not cache tile sets forever as they can be updated ([#1790](https://github.com/linz/basemaps/issues/1790)) ([d0b1c89](https://github.com/linz/basemaps/commit/d0b1c89ff155004b778ddca3003e3d5ea29e7b7f))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# [6.5.0](https://github.com/linz/basemaps/compare/v6.4.0...v6.5.0) (2021-07-25)
|
|
153
|
+
|
|
154
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
# [6.4.0](https://github.com/linz/basemaps/compare/v6.3.0...v6.4.0) (2021-07-13)
|
|
161
|
+
|
|
162
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
# [6.3.0](https://github.com/linz/basemaps/compare/v6.2.0...v6.3.0) (2021-07-07)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
# [6.2.0](https://github.com/linz/basemaps/compare/v6.1.0...v6.2.0) (2021-06-24)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Features
|
|
180
|
+
|
|
181
|
+
* disable edge lambda as its not really used. ([#1692](https://github.com/linz/basemaps/issues/1692)) ([38b02a5](https://github.com/linz/basemaps/commit/38b02a5c5050a076c69836861afc91cc92235a79))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
# [6.1.0](https://github.com/linz/basemaps/compare/v6.0.0...v6.1.0) (2021-06-23)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Bug Fixes
|
|
191
|
+
|
|
192
|
+
* **lambda-tiler:** bundle farmhash correctly ([#1693](https://github.com/linz/basemaps/issues/1693)) ([7cacf2e](https://github.com/linz/basemaps/commit/7cacf2e34b6bc6fbb25826ccf0b59d0816e25c25))
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Features
|
|
196
|
+
|
|
197
|
+
* switch to a binary cotar index ([#1691](https://github.com/linz/basemaps/issues/1691)) ([6fa0b3f](https://github.com/linz/basemaps/commit/6fa0b3f223ab251fe94011cbda88ff9aa5b6922f))
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
# [6.0.0](https://github.com/linz/basemaps/compare/v5.2.0...v6.0.0) (2021-06-21)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* **lambda-tiler:** switch to ndjson based indexes for cotar ([#1679](https://github.com/linz/basemaps/issues/1679)) ([c6f622b](https://github.com/linz/basemaps/commit/c6f622bf3f2fd583ed95df3c7d10aa4482def83b))
|
|
209
|
+
* **s3fs:** refactor how credentials are passed to s3fs ([#1675](https://github.com/linz/basemaps/issues/1675)) ([f07f529](https://github.com/linz/basemaps/commit/f07f529af1657aa5ffe7d9deff92406e908e6fe4))
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### BREAKING CHANGES
|
|
213
|
+
|
|
214
|
+
* **s3fs:** this changes the behaviour for s3fs as paths now need to be registered with credentials
|
|
215
|
+
|
|
216
|
+
* refactor: remove commented out code
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
# [5.1.0](https://github.com/linz/basemaps/compare/v5.0.3...v5.1.0) (2021-06-07)
|
|
223
|
+
|
|
224
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
## [5.0.3](https://github.com/linz/basemaps/compare/v5.0.2...v5.0.3) (2021-05-25)
|
|
231
|
+
|
|
232
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
## [5.0.2](https://github.com/linz/basemaps/compare/v5.0.1...v5.0.2) (2021-05-19)
|
|
239
|
+
|
|
240
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
## [5.0.1](https://github.com/linz/basemaps/compare/v5.0.0...v5.0.1) (2021-05-17)
|
|
247
|
+
|
|
248
|
+
### Bug Fixes
|
|
249
|
+
|
|
250
|
+
* **attribution:** all zoom levels are stored as google so convert z to the target tileMatrix ([#1614](https://github.com/linz/basemaps/issues/1614)) ([28f5c80](https://github.com/linz/basemaps/commit/fcbdefc5c951211956d03e11deef37caedf19aec))
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
# [5.0.0](https://github.com/linz/basemaps/compare/v4.24.0...v5.0.0) (2021-05-17)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Bug Fixes
|
|
260
|
+
|
|
261
|
+
* **attribution:** correct import issue with openlayers ([#1599](https://github.com/linz/basemaps/issues/1599)) ([1b464f3](https://github.com/linz/basemaps/commit/1b464f381a81448769521543787c060ef9b3efcf))
|
|
262
|
+
* **lambda-tiler:** correctly build WMTS for child tile sets ([#1607](https://github.com/linz/basemaps/issues/1607)) ([cc5ef6f](https://github.com/linz/basemaps/commit/cc5ef6f2facbc78cfad88d39785dffdae85122aa))
|
|
263
|
+
* **lambda-tiler:** do not duplicate im prefix in attribution ([#1609](https://github.com/linz/basemaps/issues/1609)) ([42f57fb](https://github.com/linz/basemaps/commit/42f57fb7c8f6aa3b5cab9179e1dfb70bd14df73e))
|
|
264
|
+
* **lambda-tiler:** flip the y axis for vector map server to get MVT from mbtiles ([#1539](https://github.com/linz/basemaps/issues/1539)) ([66806df](https://github.com/linz/basemaps/commit/66806df400788dc27cd31493466a641a63b5bcae))
|
|
265
|
+
* **lambda-tiler:** force vector tiles to be served as protobuf ([#1536](https://github.com/linz/basemaps/issues/1536)) ([2ca83ee](https://github.com/linz/basemaps/commit/2ca83ee2c7906e6e0bf81b203cd611b88aa4ad75))
|
|
266
|
+
* **tiler:** all config is stored as google zoom levels so convert this tilez to the closet google z ([#1606](https://github.com/linz/basemaps/issues/1606)) ([7ea2db1](https://github.com/linz/basemaps/commit/7ea2db14f3f75c11ffb2c2044c45519a03cfa0ee))
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Features
|
|
270
|
+
|
|
271
|
+
* **config:** Tidy up the config and cli to be able to config style json. ([#1555](https://github.com/linz/basemaps/issues/1555)) ([95b4c0e](https://github.com/linz/basemaps/commit/95b4c0ed5a42a5b7c6c7884c9bfe24f97e3677e5))
|
|
272
|
+
* **lambda-tiler:** improve caching and init of cotar ([#1542](https://github.com/linz/basemaps/issues/1542)) ([c607a1c](https://github.com/linz/basemaps/commit/c607a1c4eba04cfdcc9b21341ee154dc544678c8))
|
|
273
|
+
* **lambda-tiler:** serve vector map style json. ([#1553](https://github.com/linz/basemaps/issues/1553)) ([f9dadcd](https://github.com/linz/basemaps/commit/f9dadcdc2369c1ce30432ed231f5be4b466dc9cd))
|
|
274
|
+
* **shared:** Cleanup - Remove TileSet Metatdata Record V1. ([#1541](https://github.com/linz/basemaps/issues/1541)) ([32e79af](https://github.com/linz/basemaps/commit/32e79afe630e9042edc1f936a657b7a31f1392ef))
|
|
275
|
+
* support serving of vector tiles ([#1535](https://github.com/linz/basemaps/issues/1535)) ([30083a5](https://github.com/linz/basemaps/commit/30083a57f981c2b2db6c50cad0f8db48be377d19))
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
# [4.24.0](https://github.com/linz/basemaps/compare/v4.23.0...v4.24.0) (2021-03-21)
|
|
282
|
+
|
|
283
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
# [4.23.0](https://github.com/linz/basemaps/compare/v4.22.0...v4.23.0) (2021-03-18)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### Bug Fixes
|
|
293
|
+
|
|
294
|
+
* **geo:** use the closest zoom mapping ([#1503](https://github.com/linz/basemaps/issues/1503)) ([5ce730d](https://github.com/linz/basemaps/commit/5ce730d34dd6fed7015f29683b3fc31183b1d3bc))
|
|
295
|
+
* **lambda-tiler:** correct mapping of high zoom levels ([#1492](https://github.com/linz/basemaps/issues/1492)) ([7e98e63](https://github.com/linz/basemaps/commit/7e98e6353e1209f64d60ed028bde502847495432))
|
|
296
|
+
* **lambda-tiler:** generate a custom attribution for nztm2000quad ([#1498](https://github.com/linz/basemaps/issues/1498)) ([27933fd](https://github.com/linz/basemaps/commit/27933fd2b4d9123c107e476465a87c19e7f29c97))
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
# [4.22.0](https://github.com/linz/basemaps/compare/v4.21.0...v4.22.0) (2021-03-08)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### Features
|
|
306
|
+
|
|
307
|
+
* **bathymetry:** generate the bathy tiles based on the output tile matrix set not hard coded ([#1478](https://github.com/linz/basemaps/issues/1478)) ([536c643](https://github.com/linz/basemaps/commit/536c643a216ac1378f53b3cb15c5897a428fb492))
|
|
308
|
+
* **lambda-tiler:** support NZTM2000Quad when serving via WMTS ([#1474](https://github.com/linz/basemaps/issues/1474)) ([4f0d9e6](https://github.com/linz/basemaps/commit/4f0d9e602307d83af4f12eda0ce4466df5006e78))
|
|
309
|
+
* support custom tile matrix sets ([#1469](https://github.com/linz/basemaps/issues/1469)) ([13a42de](https://github.com/linz/basemaps/commit/13a42de2647d448e1a4130602f759e21e03651bf))
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
# [4.21.0](https://github.com/linz/basemaps/compare/v4.20.0...v4.21.0) (2021-02-16)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Bug Fixes
|
|
319
|
+
|
|
320
|
+
* **lambda-tiler:** only export the tile matrix set once per epsg code ([#1440](https://github.com/linz/basemaps/issues/1440)) ([0ac2fd8](https://github.com/linz/basemaps/commit/0ac2fd8c09120f8137c8102c50070df1885ab872))
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### Features
|
|
324
|
+
|
|
325
|
+
* **lambda-tiler:** show number of bytes served with WMTS requests ([#1439](https://github.com/linz/basemaps/issues/1439)) ([459c88e](https://github.com/linz/basemaps/commit/459c88e1006c95dd4507009c22ed9016759b0398))
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
# [4.20.0](https://github.com/linz/basemaps/compare/v4.19.0...v4.20.0) (2021-02-15)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* **lambda-tiler:** fix failed health endpoint and add new function to update health test tiles. ([#1430](https://github.com/linz/basemaps/issues/1430)) ([3205155](https://github.com/linz/basemaps/commit/32051551e92fc9acb4a46f12267857bee7635a5b))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
### Features
|
|
340
|
+
|
|
341
|
+
* **attribution:** remove `@basemaps/shared` dependency to make it smaller to install ([#1415](https://github.com/linz/basemaps/issues/1415)) ([5152614](https://github.com/linz/basemaps/commit/51526145256e0b7a514dc1185691d27cead1a0c6))
|
|
342
|
+
* **tiler:** support rendering avif tiles ([#1409](https://github.com/linz/basemaps/issues/1409)) ([8474d32](https://github.com/linz/basemaps/commit/8474d327aaab14aad96c1d7793b44b8e8daad946))
|
|
343
|
+
* Allow alternative TileMatrixSet definitions ([#1321](https://github.com/linz/basemaps/issues/1321)) ([b7cfa7b](https://github.com/linz/basemaps/commit/b7cfa7b8bf1351d9e57e46c180a1d3cf01c29927))
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
# [4.19.0](https://github.com/linz/basemaps/compare/v4.18.0...v4.19.0) (2020-11-30)
|
|
350
|
+
|
|
351
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
# [4.18.0](https://github.com/linz/basemaps/compare/v4.17.0...v4.18.0) (2020-11-12)
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
### Bug Fixes
|
|
361
|
+
|
|
362
|
+
* **lambda-tiler:** correct s3 permissions when creating tiles ([#1317](https://github.com/linz/basemaps/issues/1317)) ([95d6d1a](https://github.com/linz/basemaps/commit/95d6d1ab71e600f1ad7e3107d765a493c9d18bd4))
|
|
363
|
+
* **lambda-tiler:** filter the path for static file correctly. ([#1328](https://github.com/linz/basemaps/issues/1328)) ([e04e3d0](https://github.com/linz/basemaps/commit/e04e3d0baef7bcfe7df2d39a3a09a15515027b39))
|
|
364
|
+
* **lambda-tiler:** health endpoint cannot open static files. ([#1323](https://github.com/linz/basemaps/issues/1323)) ([aabc501](https://github.com/linz/basemaps/commit/aabc501f3864f379c733632db04130d64e4e09ea))
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
### Features
|
|
368
|
+
|
|
369
|
+
* **lambda-tiler:** add smoke test in health endpoint ([#1308](https://github.com/linz/basemaps/issues/1308)) ([334f5dd](https://github.com/linz/basemaps/commit/334f5dd8f3d1bd67b770cf24cef9cad517e36f37))
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
# [4.17.0](https://github.com/linz/basemaps/compare/v4.16.0...v4.17.0) (2020-11-03)
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
### Features
|
|
379
|
+
|
|
380
|
+
* **cli:** Configure TileSet metedata DB from config file ([#1277](https://github.com/linz/basemaps/issues/1277)) ([b8c76d4](https://github.com/linz/basemaps/commit/b8c76d4d3aac3e49a4a01bfc88c58ab149d62482))
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
# [4.16.0](https://github.com/linz/basemaps/compare/v4.15.0...v4.16.0) (2020-10-12)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
# [4.15.0](https://github.com/linz/basemaps/compare/v4.14.0...v4.15.0) (2020-09-29)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Bug Fixes
|
|
398
|
+
|
|
399
|
+
* Remove dashes from CC-BY-4.0 license text ([#1223](https://github.com/linz/basemaps/issues/1223)) ([ae88b81](https://github.com/linz/basemaps/commit/ae88b817f3f82288d3dbb5b0ca8c30302bdae959))
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Features
|
|
403
|
+
|
|
404
|
+
* **lambda-tiler:** attribution ([#1205](https://github.com/linz/basemaps/issues/1205)) ([69cca66](https://github.com/linz/basemaps/commit/69cca66d901a23f01868ce6fedc8991f01c55de2))
|
|
405
|
+
* **linzjs-s3fs:** .list is now a async generator to allow easier iterating of folders ([#1213](https://github.com/linz/basemaps/issues/1213)) ([a42c594](https://github.com/linz/basemaps/commit/a42c594a506914e340eabb2afd97991c2b119a64))
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
# [4.14.0](https://github.com/linz/basemaps/compare/v4.13.0...v4.14.0) (2020-09-17)
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
### Bug Fixes
|
|
415
|
+
|
|
416
|
+
* **linzjs-s3fs:** allow fs.list to list buckets and not need a "key" ([#1178](https://github.com/linz/basemaps/issues/1178)) ([108774f](https://github.com/linz/basemaps/commit/108774f96e37d36f89d1c29b634e1956d2fddf54))
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
# [4.13.0](https://github.com/linz/basemaps/compare/v4.12.2...v4.13.0) (2020-09-14)
|
|
423
|
+
|
|
424
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
## [4.12.2](https://github.com/linz/basemaps/compare/v4.12.0...v4.12.2) (2020-09-10)
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
### Bug Fixes
|
|
434
|
+
|
|
435
|
+
* **lambda-tiler:** Remove epsg from wmts layer id ([#1149](https://github.com/linz/basemaps/issues/1149)) ([7bca25f](https://github.com/linz/basemaps/commit/7bca25f0a15632343af825d2e30b08b5d111896e))
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
## [4.12.1](https://github.com/linz/basemaps/compare/v4.12.0...v4.12.1) (2020-09-10)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
* **lambda-tiler:** Remove epsg from wmts layer id ([#1149](https://github.com/linz/basemaps/issues/1149)) ([7bca25f](https://github.com/linz/basemaps/commit/7bca25f0a15632343af825d2e30b08b5d111896e))
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
# [4.12.0](https://github.com/linz/basemaps/compare/v4.11.2...v4.12.0) (2020-09-06)
|
|
453
|
+
|
|
454
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
## [4.11.2](https://github.com/linz/basemaps/compare/v4.11.1...v4.11.2) (2020-09-01)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
### Bug Fixes
|
|
464
|
+
|
|
465
|
+
* correct imagery loading with one imagery tile set ([#1120](https://github.com/linz/basemaps/issues/1120)) ([a992ff0](https://github.com/linz/basemaps/commit/a992ff0a7f74935a10b2e8b49399d9b885b25e57))
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
## [4.11.1](https://github.com/linz/basemaps/compare/v4.11.0...v4.11.1) (2020-08-31)
|
|
472
|
+
|
|
473
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
# [4.11.0](https://github.com/linz/basemaps/compare/v4.10.0...v4.11.0) (2020-08-31)
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
### Features
|
|
483
|
+
|
|
484
|
+
* **lambda:** reduce log volumes ([#1114](https://github.com/linz/basemaps/issues/1114)) ([f99f999](https://github.com/linz/basemaps/commit/f99f999ddfb8651057c2a58c2c67aeffc4c3e2ed))
|
|
485
|
+
* allow imagery with the same id in the rendering process twice ([#1104](https://github.com/linz/basemaps/issues/1104)) ([d8cd642](https://github.com/linz/basemaps/commit/d8cd642c6215a5198e15414c14680afacad88faf))
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
# [4.10.0](https://github.com/linz/basemaps/compare/v4.9.0...v4.10.0) (2020-08-19)
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Bug Fixes
|
|
495
|
+
|
|
496
|
+
* **lambda-tiler:** Stop health and ping response being cached ([#1066](https://github.com/linz/basemaps/issues/1066)) ([922c617](https://github.com/linz/basemaps/commit/922c617b555672d36bd3d2e4986d3b46ad333731))
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
# [4.9.0](https://github.com/linz/basemaps/compare/v4.8.0...v4.9.0) (2020-08-17)
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
### Features
|
|
506
|
+
|
|
507
|
+
* allow configuration of tile resize kernels ([#1051](https://github.com/linz/basemaps/issues/1051)) ([6b6d3d3](https://github.com/linz/basemaps/commit/6b6d3d32c735de6bf3f41819aaeb571c78f0921c))
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
# [4.8.0](https://github.com/linz/basemaps/compare/v4.7.1...v4.8.0) (2020-08-12)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Features
|
|
517
|
+
|
|
518
|
+
* **lambda-tiler:** allow dumping of single tiles from aws ([#1037](https://github.com/linz/basemaps/issues/1037)) ([85b4783](https://github.com/linz/basemaps/commit/85b4783b332e2c134157ed11029386a3dcbeab0b))
|
|
519
|
+
* **lambda-tiler:** set cache for tiles to be public to increase cache hits ([#1035](https://github.com/linz/basemaps/issues/1035)) ([610b10c](https://github.com/linz/basemaps/commit/610b10c7eebb934f463d88654768dd64836f118a))
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
## [4.7.1](https://github.com/linz/basemaps/compare/v4.7.0...v4.7.1) (2020-08-11)
|
|
526
|
+
|
|
527
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
# [4.7.0](https://github.com/linz/basemaps/compare/v4.6.0...v4.7.0) (2020-08-10)
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
### Bug Fixes
|
|
537
|
+
|
|
538
|
+
* **lambda-api-tracker:** 404 when projection or zoom are invalid over 500 ([#1017](https://github.com/linz/basemaps/issues/1017)) ([2125394](https://github.com/linz/basemaps/commit/2125394a4f3fdecc234d06598432386bb672a625))
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
# [4.6.0](https://github.com/linz/basemaps/compare/v4.5.0...v4.6.0) (2020-08-05)
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
### Features
|
|
548
|
+
|
|
549
|
+
* **geojson:** Improve GeoJSON compliance ([#1005](https://github.com/linz/basemaps/issues/1005)) ([bf7fd26](https://github.com/linz/basemaps/commit/bf7fd26cf2b08d6417a0c710b821648e9f7c9b9a))
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
# [4.5.0](https://github.com/linz/basemaps/compare/v4.4.0...v4.5.0) (2020-07-30)
|
|
556
|
+
|
|
557
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
# [4.4.0](https://github.com/linz/basemaps/compare/v4.3.0...v4.4.0) (2020-07-28)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
### Bug Fixes
|
|
567
|
+
|
|
568
|
+
* inject git version and hash into all code ([#966](https://github.com/linz/basemaps/issues/966)) ([8b8eaec](https://github.com/linz/basemaps/commit/8b8eaec373286c81b425d485274edd7c588aefea))
|
|
569
|
+
* **lambda-api:** track api key usage ([#943](https://github.com/linz/basemaps/issues/943)) ([7c4689c](https://github.com/linz/basemaps/commit/7c4689cd0824ee678260ba5d84b25042aad72363))
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
### Features
|
|
573
|
+
|
|
574
|
+
* **lambda-tiler:** Serve WMTSCapabilities for all TileSets ([#953](https://github.com/linz/basemaps/issues/953)) ([49d0e88](https://github.com/linz/basemaps/commit/49d0e881b4726188ea937a9617c98bff5a78e44d))
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
# [4.3.0](https://github.com/linz/basemaps/compare/v4.2.0...v4.3.0) (2020-07-19)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
### Features
|
|
584
|
+
|
|
585
|
+
* **lambda-tiler:** log out api key used to request the tile ([#939](https://github.com/linz/basemaps/issues/939)) ([1eb9ff0](https://github.com/linz/basemaps/commit/1eb9ff0b90eebcd80e4fa69083d10eb9366623a8))
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
# [4.2.0](https://github.com/linz/basemaps/compare/v4.1.0...v4.2.0) (2020-07-16)
|
|
592
|
+
|
|
593
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
# [4.1.0](https://github.com/linz/basemaps/compare/v4.0.0...v4.1.0) (2020-07-15)
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
### Bug Fixes
|
|
603
|
+
|
|
604
|
+
* **wmts:** add style tag to wmtscaps ([#894](https://github.com/linz/basemaps/issues/894)) ([d486c4b](https://github.com/linz/basemaps/commit/d486c4b9105c3c92bf73423f9ec05db37bbbd9ea))
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
# [4.0.0](https://github.com/linz/basemaps/compare/v3.6.0...v4.0.0) (2020-07-09)
|
|
611
|
+
|
|
612
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
# [3.6.0](https://github.com/linz/basemaps/compare/v3.5.0...v3.6.0) (2020-07-08)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
### Bug Fixes
|
|
622
|
+
|
|
623
|
+
* **wmts:** add identifier ([#877](https://github.com/linz/basemaps/issues/877)) ([d2d9f56](https://github.com/linz/basemaps/commit/d2d9f56eb348e1131fa951a59e799cc333fb8a31))
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
# [3.5.0](https://github.com/linz/basemaps/compare/v3.4.2...v3.5.0) (2020-07-05)
|
|
630
|
+
|
|
631
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
## [3.4.1](https://github.com/linz/basemaps/compare/v3.4.0...v3.4.1) (2020-06-30)
|
|
638
|
+
|
|
639
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
# [3.4.0](https://github.com/linz/basemaps/compare/v3.3.0...v3.4.0) (2020-06-29)
|
|
646
|
+
|
|
647
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
# [3.2.0](https://github.com/linz/basemaps/compare/v3.1.0...v3.2.0) (2020-06-25)
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
### Bug Fixes
|
|
657
|
+
|
|
658
|
+
* **lambda-tiler:** 404 when a user requests a tile outside of the tms zoom range ([#812](https://github.com/linz/basemaps/issues/812)) ([c78fff6](https://github.com/linz/basemaps/commit/c78fff6d7738f95339520c2d335ccb9a5329cc82))
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
# [3.1.0](https://github.com/linz/basemaps/compare/v3.0.0...v3.1.0) (2020-06-25)
|
|
665
|
+
|
|
666
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
# [3.0.0](https://github.com/linz/basemaps/compare/v2.2.0...v3.0.0) (2020-06-23)
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
### Features
|
|
676
|
+
|
|
677
|
+
* **landing:** support nztm tiles ([#779](https://github.com/linz/basemaps/issues/779)) ([5158603](https://github.com/linz/basemaps/commit/51586035aa7a258cadb8b561d91f63e87c049eb2))
|
|
678
|
+
* Generate and render COGs using bounding boxes ([#774](https://github.com/linz/basemaps/issues/774)) ([e35bf1f](https://github.com/linz/basemaps/commit/e35bf1f0e20b74a16ff942dc88547afc56454c12))
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
# [2.2.0](https://github.com/linz/basemaps/compare/v2.1.0...v2.2.0) (2020-06-17)
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
### Bug Fixes
|
|
688
|
+
|
|
689
|
+
* do not use full tiff files for generating etags ([#672](https://github.com/linz/basemaps/issues/672)) ([9fa9e73](https://github.com/linz/basemaps/commit/9fa9e73e9c650b5f2be198032d7a055a2c22e101))
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
### Features
|
|
693
|
+
|
|
694
|
+
* **cli:** allow rendering of a single cog ([#737](https://github.com/linz/basemaps/issues/737)) ([87ed6f1](https://github.com/linz/basemaps/commit/87ed6f14c55655e61835e2cdbf139e720280462e))
|
|
695
|
+
* **lambda-tiler:** Serve local images with set priority ([#755](https://github.com/linz/basemaps/issues/755)) ([6cd8ff2](https://github.com/linz/basemaps/commit/6cd8ff2f2979211e4859a1e2b0f949fcd5718bd2))
|
|
696
|
+
* **lambda-tiler:** support rendering tiles where the tile matrix set is not a quad ([#749](https://github.com/linz/basemaps/issues/749)) ([3aa97d2](https://github.com/linz/basemaps/commit/3aa97d28ff96f840de72dc7b7b710ad825bbea9a))
|
|
697
|
+
* render tiles using tile matrix sets ([#699](https://github.com/linz/basemaps/issues/699)) ([5b8156a](https://github.com/linz/basemaps/commit/5b8156aac4d23087c399667fba265af8383cd60a))
|
|
698
|
+
* **wmts:** support multiple layers and multiple projections ([#689](https://github.com/linz/basemaps/issues/689)) ([a8a5627](https://github.com/linz/basemaps/commit/a8a562705ba4b7b7e0c77ba5d2a7709ed08283ad))
|
|
699
|
+
* Allow composite imagery from different COG buckets ([#664](https://github.com/linz/basemaps/issues/664)) ([404a5a3](https://github.com/linz/basemaps/commit/404a5a3ad35ad6da5c8de6e1beebb134dcaec3ff))
|
|
700
|
+
* **lambda-shared:** add TileMetadataProvider ([#624](https://github.com/linz/basemaps/issues/624)) ([62c7744](https://github.com/linz/basemaps/commit/62c774403b8a7073cdbc846ca92abce3b986dfaf))
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
# [2.1.0](https://github.com/linz/basemaps/compare/v2.0.0...v2.1.0) (2020-05-21)
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
### Bug Fixes
|
|
710
|
+
|
|
711
|
+
* **lambda-shared:** fix order equal priority images are sorted ([#640](https://github.com/linz/basemaps/issues/640)) ([3022336](https://github.com/linz/basemaps/commit/302233614aec815eb0d85c588d4a0c4be7f5cbc3))
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
### Features
|
|
715
|
+
|
|
716
|
+
* better sparse cog handling ([#634](https://github.com/linz/basemaps/issues/634)) ([1b60a87](https://github.com/linz/basemaps/commit/1b60a87f4a3f4751f203e3c927ca34784e5745b2))
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
# [2.0.0](https://github.com/linz/basemaps/compare/v1.12.0...v2.0.0) (2020-05-18)
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
### Features
|
|
726
|
+
|
|
727
|
+
* **geo:** support chatham projection 3793 ([#632](https://github.com/linz/basemaps/issues/632)) ([22d7cb6](https://github.com/linz/basemaps/commit/22d7cb62541e02101ca4cde153f856412f5d5d0d))
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
# [1.11.0](https://github.com/linz/basemaps/compare/v1.10.0...v1.11.0) (2020-05-14)
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
### Bug Fixes
|
|
737
|
+
|
|
738
|
+
* **lambda-tiler:** add missing identifier for WMTS individual set ([#617](https://github.com/linz/basemaps/issues/617)) ([5f79609](https://github.com/linz/basemaps/commit/5f79609c478b9b9cf26006a9a428b05cdc39a7aa))
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
# [1.10.0](https://github.com/linz/basemaps/compare/v1.9.0...v1.10.0) (2020-05-13)
|
|
745
|
+
|
|
746
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
# [1.9.0](https://github.com/linz/basemaps/compare/v1.8.0...v1.9.0) (2020-05-12)
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
### Features
|
|
756
|
+
|
|
757
|
+
* **lambda-tiler:** Support tags and imagery sets for WMTSCapabilities.xml ([#599](https://github.com/linz/basemaps/issues/599)) ([9f4c6c2](https://github.com/linz/basemaps/commit/9f4c6c201224bf083ace2edfb2e8b885d741c6c5))
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
# [1.8.0](https://github.com/linz/basemaps/compare/v1.7.0...v1.8.0) (2020-05-11)
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
### Features
|
|
767
|
+
|
|
768
|
+
* support rendering different backgrounds for tiles ([#591](https://github.com/linz/basemaps/issues/591)) ([22f38f5](https://github.com/linz/basemaps/commit/22f38f555a678e6968206351d8fbb62a604da39e))
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
# [1.7.0](https://github.com/linz/basemaps/compare/v1.6.0...v1.7.0) (2020-05-10)
|
|
775
|
+
|
|
776
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
# [1.6.0](https://github.com/linz/basemaps/compare/v1.5.1...v1.6.0) (2020-05-08)
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
### Bug Fixes
|
|
786
|
+
|
|
787
|
+
* **serve:** allow any tile set name to be used ([#579](https://github.com/linz/basemaps/issues/579)) ([e3e6a03](https://github.com/linz/basemaps/commit/e3e6a03e66b496ae6f9247dc9cbbb0110f5993c5))
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
# [1.5.0](https://github.com/linz/basemaps/compare/v1.4.2...v1.5.0) (2020-05-07)
|
|
794
|
+
|
|
795
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
## [1.4.2](https://github.com/linz/basemaps/compare/v1.4.1...v1.4.2) (2020-05-06)
|
|
802
|
+
|
|
803
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
## [1.4.1](https://github.com/linz/basemaps/compare/v1.4.0...v1.4.1) (2020-05-06)
|
|
810
|
+
|
|
811
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
# [1.4.0](https://github.com/linz/basemaps/compare/v1.3.0...v1.4.0) (2020-05-06)
|
|
818
|
+
|
|
819
|
+
**Note:** Version bump only for package @basemaps/lambda-tiler
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
# [1.3.0](https://github.com/linz/basemaps/compare/v1.2.0...v1.3.0) (2020-05-05)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
### Bug Fixes
|
|
829
|
+
|
|
830
|
+
* **projection.toUrn:** Don't include EPSG database version ([0c32d1f](https://github.com/linz/basemaps/commit/0c32d1f7461e47c6b8b63819bba419da740459a2))
|
|
831
|
+
* **wmts:** change image format order for ArcGIS Pro ([90c4cc8](https://github.com/linz/basemaps/commit/90c4cc8c2bed15e5aa5a36afd1270ee634b53e02))
|
|
832
|
+
* **wmts:** set max zoom to 22 ([288078f](https://github.com/linz/basemaps/commit/288078ffc6924d89802e529797a4440cc1023f90))
|
|
833
|
+
* imagery maps need to be initialized before use ([ae9b462](https://github.com/linz/basemaps/commit/ae9b462e033726a59a426df93aabfaa4a063471c))
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
### Features
|
|
837
|
+
|
|
838
|
+
* **cli:** switch to priority numbers rather than array position ([#555](https://github.com/linz/basemaps/issues/555)) ([5dde7fd](https://github.com/linz/basemaps/commit/5dde7fd50ce1ea0faeb27c25030890a6c2fd6440))
|
|
839
|
+
* support tileset history ([#537](https://github.com/linz/basemaps/issues/537)) ([06760d4](https://github.com/linz/basemaps/commit/06760d4f1a6a28d0edc4f40f55cdf9db8e91f93f))
|
|
840
|
+
* **vdom:** improve iterating tags and elementChildren ([5c85b37](https://github.com/linz/basemaps/commit/5c85b37f5de871ef0ea9dd08075dfc4dd7f1ace0))
|
|
841
|
+
* parse vrt files so we can modify them ([ef985d8](https://github.com/linz/basemaps/commit/ef985d8b018e86a0cc2fd9e873da96cbcda336e5))
|
|
842
|
+
* **wmts:** add fields and use URNs ([7e25b85](https://github.com/linz/basemaps/commit/7e25b85224ef28a9591c70dbea7b7a95b1bc48f2))
|
|
843
|
+
* **wmts:** increase max zoom level to 25 ([bc97ad3](https://github.com/linz/basemaps/commit/bc97ad38fef6ad15f50835784faa133c7b2dac88))
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
# [1.2.0](https://github.com/linz/basemaps/compare/v1.1.0...v1.2.0) (2020-03-25)
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
### Bug Fixes
|
|
853
|
+
|
|
854
|
+
* **wmts:** don't add api key if blank ([b16d4cd](https://github.com/linz/basemaps/commit/b16d4cd1761b7196b75c151859337a6b27b4aab6))
|
|
855
|
+
* **wmts:** fix tile width, CRS and url version and api key ([9f22932](https://github.com/linz/basemaps/commit/9f229327555eaf409d772ecf5f2ff271e766035e))
|
|
856
|
+
* **wmts:** respond with 304 if not modified ([42ac052](https://github.com/linz/basemaps/commit/42ac052b21e84bc62df9852725a558eaa38130a6))
|
|
857
|
+
* dont allow invalid urls to be passed to the rendering engine. ([90cc0de](https://github.com/linz/basemaps/commit/90cc0de72e0d096416ca01305cc8ff3e4ecaca27))
|
|
858
|
+
* lambda functions need a "handler" to be exported to run ([d45b60b](https://github.com/linz/basemaps/commit/d45b60b5171af5e0bfe87657fb5db31cbdcc65c7))
|
|
859
|
+
* offset is outside of the bounds. ([a3a786c](https://github.com/linz/basemaps/commit/a3a786c98aa0879d9d17af133c33996a87a830c4))
|
|
860
|
+
* update landing page and cli/serve to include aerial/3857 ([a604148](https://github.com/linz/basemaps/commit/a604148365b42417088821eca16487b63e7eaa58))
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
### Features
|
|
864
|
+
|
|
865
|
+
* **tile:** serve png, webp and jpeg ([44e9395](https://github.com/linz/basemaps/commit/44e93952dadfc4367f909fb1ac64cc811667d75b))
|
|
866
|
+
* **wmts:** set cache-control max-age=0 for WMTSCapabilities.xml ([3e2c008](https://github.com/linz/basemaps/commit/3e2c0080faadf15e31d7646b8b711e4510313600))
|
|
867
|
+
* adding suport for png, webp and jpeg tiles. ([8ad61e7](https://github.com/linz/basemaps/commit/8ad61e737a3cd153540abd8811bac680d00afeda))
|
|
868
|
+
* generate WMTSCapabilities.xml ([3e5ca52](https://github.com/linz/basemaps/commit/3e5ca52cd1b105c086c665e81cd6f2bc01eaacdb))
|
|
869
|
+
* plug in wmts into tracker and lambda servers ([e57681b](https://github.com/linz/basemaps/commit/e57681b3ef42def0dc1a11de23c4e0a6a264d3f5))
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
# [1.1.0](https://github.com/linz/basemaps/compare/v1.0.0...v1.1.0) (2020-02-20)
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
### Bug Fixes
|
|
879
|
+
|
|
880
|
+
* disable broken cogs until we can reprocess them ([43604ad](https://github.com/linz/basemaps/commit/43604ad2799f4ff8f12bf3f261d4c6d87b6853ea))
|
|
881
|
+
* limit the maximum zoom level for low resolution imagery ([c6e13a9](https://github.com/linz/basemaps/commit/c6e13a984bb6d6549daf5a5458e28a81039e1e5b))
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
# [1.0.0](https://github.com/linz/basemaps/compare/v0.3.0...v1.0.0) (2020-02-18)
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
* refactor!: split packages out in preperation for publishing. ([c6f5cbb](https://github.com/linz/basemaps/commit/c6f5cbb5514659ce446460bc8637e7a00e403a49))
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
### Bug Fixes
|
|
894
|
+
|
|
895
|
+
* correct a broken testing url ([5608176](https://github.com/linz/basemaps/commit/56081769498762de4c6c7a2ac0cc194b45264ab4))
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
### BREAKING CHANGES
|
|
899
|
+
|
|
900
|
+
* this splits out the lambda/node dependencies from javascript so packages can be published for the browser
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
# [0.3.0](https://github.com/linz/basemaps/compare/v0.2.0...v0.3.0) (2020-02-11)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
### Bug Fixes
|
|
910
|
+
|
|
911
|
+
* imagery needs a stable sort ([c7ba799](https://github.com/linz/basemaps/commit/c7ba7993e1544f7d120f7612d17b6f427549d716))
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
### Features
|
|
915
|
+
|
|
916
|
+
* regional additions ([8d08889](https://github.com/linz/basemaps/commit/8d08889690baf28ec7f62306065a2c21758e4943))
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
# [0.2.0](https://github.com/linz/basemaps/compare/v0.1.0...v0.2.0) (2020-01-29)
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
### Bug Fixes
|
|
926
|
+
|
|
927
|
+
* new bathy imagery which improves the render quality ([a895d40](https://github.com/linz/basemaps/commit/a895d40dd76fa63f7fd034d40523b8db4b90969e))
|
|
928
|
+
* wait for the tiffs to load before trying to serve them ([2647c15](https://github.com/linz/basemaps/commit/2647c15b167574d228c00aa957864d114b5b7b26))
|
|
929
|
+
* warn when a COG cannot be found ([2677865](https://github.com/linz/basemaps/commit/2677865c0c36b2392bb368b6617bb5ee5c997dae))
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
### Features
|
|
933
|
+
|
|
934
|
+
* add dunedin urban 2018 ([9895bd7](https://github.com/linz/basemaps/commit/9895bd7ab35a01a2981e7261893bdf1ba9da2164))
|
|
935
|
+
* adding bay of plenty urban 2018/19 ([52a4528](https://github.com/linz/basemaps/commit/52a452800a59ad9cc7c1164873bfa2d58a2df027))
|
|
936
|
+
* adding more urban imagery sets ([0b98b4b](https://github.com/linz/basemaps/commit/0b98b4bea853ec1834dbb4c5bcb3c8ad1f140874))
|
|
937
|
+
* allow cli tiler to access data from s3 ([c033de3](https://github.com/linz/basemaps/commit/c033de32d09d69db997569ee61bd002f8ae62c82))
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
# 0.1.0 (2020-01-23)
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
### Bug Fixes
|
|
947
|
+
|
|
948
|
+
* bigint logging does not work ([2b3ed43](https://github.com/linz/basemaps/commit/2b3ed4380d4444120755eadfa41defc6c19ce4df))
|
|
949
|
+
* build some cogs ([8c1e6d9](https://github.com/linz/basemaps/commit/8c1e6d90ddf33aa852b69fdecebfd42fbb2a7045))
|
|
950
|
+
* correct text in response ([940244f](https://github.com/linz/basemaps/commit/940244f8540010ccb496f45b9ea0c1197cf1fef9))
|
|
951
|
+
* fixing path loading for s3 cogs ([fa86ed4](https://github.com/linz/basemaps/commit/fa86ed405b5ff1016c604338701c5da4f6f11e5d))
|
|
952
|
+
* headers need to be lowercased ([d0adc74](https://github.com/linz/basemaps/commit/d0adc74857380bd25ee429519e53dc728ff9e5b3))
|
|
953
|
+
* provide a new stream to pino instead of changing the internal one ([025abed](https://github.com/linz/basemaps/commit/025abed6d62ed3a8870d567702be5a4d074333d1))
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
### Features
|
|
957
|
+
|
|
958
|
+
* adding cli to serve xyz a folder of cogs on localhost:5050 ([eeb4d2b](https://github.com/linz/basemaps/commit/eeb4d2b7912d1dc358afbc8f6ade5c40f7c06250))
|
|
959
|
+
* adding gisborne_rural_2017-18_0.3m ([4491493](https://github.com/linz/basemaps/commit/449149344966948524b56f367cfd7c2de0cb3b1d))
|
|
960
|
+
* adding improved metrics ([2b97eb5](https://github.com/linz/basemaps/commit/2b97eb5efc47dc1ef46c50d073f5df04ff0017de))
|
|
961
|
+
* adding ping version and health endpoints ([af0a1dc](https://github.com/linz/basemaps/commit/af0a1dcddb80549971387cdda63f90dd0e64d755))
|
|
962
|
+
* basic mosaic support ([cbd8e4c](https://github.com/linz/basemaps/commit/cbd8e4c1cb91974c4bced766d1c5167a3ab6d99a))
|
|
963
|
+
* better cogify command ([8f086eb](https://github.com/linz/basemaps/commit/8f086eb18b079d3a0243c421bd82607de24463c0))
|
|
964
|
+
* create tests for xyz tile service ([5caf862](https://github.com/linz/basemaps/commit/5caf862a366ec27495f449c7d7595f62d383b56e))
|
|
965
|
+
* gebco bathymetry ([7936908](https://github.com/linz/basemaps/commit/7936908b384c564ee2293780b96ccfa5ecef4466))
|
|
966
|
+
* generate a ETag from the parameters for caching ([2d6c4be](https://github.com/linz/basemaps/commit/2d6c4be530fe52184664b812445444d0f90b6e79))
|
|
967
|
+
* gisborne urban 2018 ([083e46c](https://github.com/linz/basemaps/commit/083e46c328ef12ecd4fe2709412f5b66bf103ff0))
|
|
968
|
+
* include git version information in deployments ([5877005](https://github.com/linz/basemaps/commit/5877005b2cb5d4e24eb1cfc9cd108fa332cacaeb))
|
|
969
|
+
* include request id in http headers ([a80d3e0](https://github.com/linz/basemaps/commit/a80d3e030bd95c7617e8e1ab10b90fbdb86c1a03))
|
|
970
|
+
* increase logging around http method/path ([6282b41](https://github.com/linz/basemaps/commit/6282b410d873ce0b11db520accd88cb5d0eca107))
|
|
971
|
+
* increase metric tracking ([9408135](https://github.com/linz/basemaps/commit/94081354e612af1a6b4c4fe3b825df0fe134b493))
|
|
972
|
+
* initial tiler to be used inside of the xyz service ([2b6b6e3](https://github.com/linz/basemaps/commit/2b6b6e305bb54324984d00a64db3fdbb1fc73ba5))
|
|
973
|
+
* lambda xyz tile server ([f115dfd](https://github.com/linz/basemaps/commit/f115dfd48ee352a8fc90abbfcbea15778f6c0961))
|
|
974
|
+
* log out center of xyz tile from cloudfront requests too ([f0ca41e](https://github.com/linz/basemaps/commit/f0ca41eef8acbe82677642eeb3d9664bb467b3c7))
|
|
975
|
+
* log out center of xyz tile so that we can plot it on a map easily ([0cc380d](https://github.com/linz/basemaps/commit/0cc380d923ecceee8b50d008de02ef6bd74f15f1))
|
|
976
|
+
* new better bg43 COG ([7a88d17](https://github.com/linz/basemaps/commit/7a88d17692114954e7dd92a4872b657450c3712e))
|
|
977
|
+
* serve 1x1 pixel png instead of 404 ([4d27d1d](https://github.com/linz/basemaps/commit/4d27d1d3df2222ea48da905b98c4aa463c980ee7))
|
|
978
|
+
* serve a webmap when running a local debug server. ([6c2f41c](https://github.com/linz/basemaps/commit/6c2f41c55038401e7cdffc4bcb9242e6f91b7b74))
|
|
979
|
+
* simplify loading of required tiff files ([3676e52](https://github.com/linz/basemaps/commit/3676e52a03af44b74adba0218773bcd350427a0d))
|
|
980
|
+
* tile multiple datasets ([ae2d841](https://github.com/linz/basemaps/commit/ae2d841d3c81f992a8192d6de5534b49b30453f8))
|
|
981
|
+
* upgrade to cogeotiff 0.4.1 ([f161a67](https://github.com/linz/basemaps/commit/f161a67a539eb85eaf79e9af119bac777f0ca95a))
|