├── .gitignore ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── RELEASE.md ├── babel.config.json ├── data └── setup.sh ├── package.json ├── src ├── add.js ├── events.js ├── index.js └── utils │ ├── bbox-to-bounds.js │ ├── create-georaster-layer.js │ ├── get-bounds.js │ ├── image-overlay.js │ ├── parse-alphas.js │ ├── tile-layer.js │ └── with-timeout.js ├── stac-layer.gif ├── test ├── stac-api-collections │ ├── gee.html │ └── gee.json ├── stac-api-items │ ├── cogs_with_overview.html │ ├── cogs_with_overview_no_bbox.html │ ├── dxf.html │ └── swiss-federal-sdi.html ├── stac-catalog │ └── pdd.html ├── stac-collection │ ├── antimeridian.html │ ├── collection-assets.html │ ├── gee-aafc-aci-display-preview.html │ ├── gee-aafc-aci.html │ ├── gee-landsat-8.html │ ├── pdd.html │ ├── preview-one-bbox.html │ └── swiss-federal-sdi.html ├── stac-item-asset │ ├── bands.html │ ├── no-bounds.html │ ├── no-cors.html │ ├── pdd │ │ ├── analytic-bands.html │ │ ├── analytic-georaster-band-math.html │ │ ├── one-band.html │ │ ├── thumbnail.html │ │ ├── udm.html │ │ ├── visual-bands-reversed.html │ │ └── visual.html │ └── relative-asset.html ├── stac-item │ ├── astrogeology.html │ ├── cogs │ │ ├── California-Vegetation-CanopyBaseHeight-2016-Summer-00010m.png │ │ ├── cog-1.html │ │ ├── cog-no-cors-overview.html │ │ ├── cog-no-cors.html │ │ ├── cog-selected-asset-object.html │ │ ├── cog-selected-asset.html │ │ └── thumb.html │ ├── digital-earth-au-local-2.html │ ├── digital-earth-au-local-3.html │ ├── digital-earth-au.html │ ├── geotiff-default.html │ ├── landsat-2-cogs.html │ ├── minmax.html │ ├── opentopography.html │ ├── pangeo-sea-surface.html │ ├── pdd-nodata.html │ ├── pdd.html │ ├── planetary-computer.html │ ├── skrafotos.html │ ├── swiss-federal-sdi.html │ └── usgs-lidar.html ├── tests.js └── tilers │ ├── marblecutter │ ├── bug.html │ ├── one-band.html │ └── pdd.html │ └── titiler │ ├── build-tile-url-template.html │ ├── cbers.html │ ├── cog-no-cors-with-tile-url-template.html │ └── pdd.html └── webpack.config.cjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/RELEASE.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/babel.config.json -------------------------------------------------------------------------------- /data/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/data/setup.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/package.json -------------------------------------------------------------------------------- /src/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/add.js -------------------------------------------------------------------------------- /src/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/events.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/bbox-to-bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/bbox-to-bounds.js -------------------------------------------------------------------------------- /src/utils/create-georaster-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/create-georaster-layer.js -------------------------------------------------------------------------------- /src/utils/get-bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/get-bounds.js -------------------------------------------------------------------------------- /src/utils/image-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/image-overlay.js -------------------------------------------------------------------------------- /src/utils/parse-alphas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/parse-alphas.js -------------------------------------------------------------------------------- /src/utils/tile-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/tile-layer.js -------------------------------------------------------------------------------- /src/utils/with-timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/src/utils/with-timeout.js -------------------------------------------------------------------------------- /stac-layer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/stac-layer.gif -------------------------------------------------------------------------------- /test/stac-api-collections/gee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-collections/gee.html -------------------------------------------------------------------------------- /test/stac-api-collections/gee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-collections/gee.json -------------------------------------------------------------------------------- /test/stac-api-items/cogs_with_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-items/cogs_with_overview.html -------------------------------------------------------------------------------- /test/stac-api-items/cogs_with_overview_no_bbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-items/cogs_with_overview_no_bbox.html -------------------------------------------------------------------------------- /test/stac-api-items/dxf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-items/dxf.html -------------------------------------------------------------------------------- /test/stac-api-items/swiss-federal-sdi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-api-items/swiss-federal-sdi.html -------------------------------------------------------------------------------- /test/stac-catalog/pdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-catalog/pdd.html -------------------------------------------------------------------------------- /test/stac-collection/antimeridian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/antimeridian.html -------------------------------------------------------------------------------- /test/stac-collection/collection-assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/collection-assets.html -------------------------------------------------------------------------------- /test/stac-collection/gee-aafc-aci-display-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/gee-aafc-aci-display-preview.html -------------------------------------------------------------------------------- /test/stac-collection/gee-aafc-aci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/gee-aafc-aci.html -------------------------------------------------------------------------------- /test/stac-collection/gee-landsat-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/gee-landsat-8.html -------------------------------------------------------------------------------- /test/stac-collection/pdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/pdd.html -------------------------------------------------------------------------------- /test/stac-collection/preview-one-bbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/preview-one-bbox.html -------------------------------------------------------------------------------- /test/stac-collection/swiss-federal-sdi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-collection/swiss-federal-sdi.html -------------------------------------------------------------------------------- /test/stac-item-asset/bands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/bands.html -------------------------------------------------------------------------------- /test/stac-item-asset/no-bounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/no-bounds.html -------------------------------------------------------------------------------- /test/stac-item-asset/no-cors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/no-cors.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/analytic-bands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/analytic-bands.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/analytic-georaster-band-math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/analytic-georaster-band-math.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/one-band.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/one-band.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/thumbnail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/thumbnail.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/udm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/udm.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/visual-bands-reversed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/visual-bands-reversed.html -------------------------------------------------------------------------------- /test/stac-item-asset/pdd/visual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/pdd/visual.html -------------------------------------------------------------------------------- /test/stac-item-asset/relative-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item-asset/relative-asset.html -------------------------------------------------------------------------------- /test/stac-item/astrogeology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/astrogeology.html -------------------------------------------------------------------------------- /test/stac-item/cogs/California-Vegetation-CanopyBaseHeight-2016-Summer-00010m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/California-Vegetation-CanopyBaseHeight-2016-Summer-00010m.png -------------------------------------------------------------------------------- /test/stac-item/cogs/cog-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/cog-1.html -------------------------------------------------------------------------------- /test/stac-item/cogs/cog-no-cors-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/cog-no-cors-overview.html -------------------------------------------------------------------------------- /test/stac-item/cogs/cog-no-cors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/cog-no-cors.html -------------------------------------------------------------------------------- /test/stac-item/cogs/cog-selected-asset-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/cog-selected-asset-object.html -------------------------------------------------------------------------------- /test/stac-item/cogs/cog-selected-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/cog-selected-asset.html -------------------------------------------------------------------------------- /test/stac-item/cogs/thumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/cogs/thumb.html -------------------------------------------------------------------------------- /test/stac-item/digital-earth-au-local-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/digital-earth-au-local-2.html -------------------------------------------------------------------------------- /test/stac-item/digital-earth-au-local-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/digital-earth-au-local-3.html -------------------------------------------------------------------------------- /test/stac-item/digital-earth-au.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/digital-earth-au.html -------------------------------------------------------------------------------- /test/stac-item/geotiff-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/geotiff-default.html -------------------------------------------------------------------------------- /test/stac-item/landsat-2-cogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/landsat-2-cogs.html -------------------------------------------------------------------------------- /test/stac-item/minmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/minmax.html -------------------------------------------------------------------------------- /test/stac-item/opentopography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/opentopography.html -------------------------------------------------------------------------------- /test/stac-item/pangeo-sea-surface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/pangeo-sea-surface.html -------------------------------------------------------------------------------- /test/stac-item/pdd-nodata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/pdd-nodata.html -------------------------------------------------------------------------------- /test/stac-item/pdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/pdd.html -------------------------------------------------------------------------------- /test/stac-item/planetary-computer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/planetary-computer.html -------------------------------------------------------------------------------- /test/stac-item/skrafotos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/skrafotos.html -------------------------------------------------------------------------------- /test/stac-item/swiss-federal-sdi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/swiss-federal-sdi.html -------------------------------------------------------------------------------- /test/stac-item/usgs-lidar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/stac-item/usgs-lidar.html -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tests.js -------------------------------------------------------------------------------- /test/tilers/marblecutter/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/marblecutter/bug.html -------------------------------------------------------------------------------- /test/tilers/marblecutter/one-band.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/marblecutter/one-band.html -------------------------------------------------------------------------------- /test/tilers/marblecutter/pdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/marblecutter/pdd.html -------------------------------------------------------------------------------- /test/tilers/titiler/build-tile-url-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/titiler/build-tile-url-template.html -------------------------------------------------------------------------------- /test/tilers/titiler/cbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/titiler/cbers.html -------------------------------------------------------------------------------- /test/tilers/titiler/cog-no-cors-with-tile-url-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/titiler/cog-no-cors-with-tile-url-template.html -------------------------------------------------------------------------------- /test/tilers/titiler/pdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/test/tilers/titiler/pdd.html -------------------------------------------------------------------------------- /webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-utils/stac-layer/HEAD/webpack.config.cjs --------------------------------------------------------------------------------