@geomatico/maplibre-cog-protocol
v0.10.0
Published
Custom protocol to load Cloud Optimized GeoTIFFs (COG) in Maplibre GL JS
Keywords
Readme
MapLibre COG Protocol — Display Cloud Optimized GeoTIFFs in MapLibre GL JS
MapLibre COG Protocol is an open source JavaScript library for loading and visualizing Cloud Optimized GeoTIFFs directly in MapLibre GL JS.
It adds a custom cog:// protocol that lets MapLibre applications display large raster datasets
straight from cloud storage using HTTP range requests, without a traditional raster tile server in
between. Only the parts of the file needed by the current map view are fetched and decoded, in the
browser, using geotiff.js.
The library renders RGB and grayscale imagery, digital elevation models, 3D terrain and hillshading, and applies color ramps to single-band rasters. It also lets you write your own per-pixel coloring functions, so the bands of a multispectral satellite image can be combined in the browser to derive indicators such as NDVI on the fly, with no preprocessing and no derived files to store.
Why use MapLibre COG Protocol?
Traditional web raster architectures require preprocessing your data into tiles and running a dedicated tile server to publish them. Cloud Optimized GeoTIFFs remove that step: the file itself is organized so a client can request just the byte ranges it needs. This library brings that serverless raster workflow to MapLibre GL JS, which helps you:
- Publish large rasters from plain object storage (S3, GCS, Azure Blob, or any HTTP server supporting range requests).
- Cut raster infrastructure, preprocessing and hosting costs.
- Display multi-gigabyte GeoTIFFs in the browser without downloading them whole.
- Visualize satellite imagery, elevation models and other scientific rasters.
- Apply color ramps and band arithmetic client-side, with no server round trip.
- Derive indices from multispectral imagery on the fly, instead of precomputing and storing a raster per index.
- Change the formula, thresholds or palette of an indicator without regenerating any data.
- Keep control of your stack with open source geospatial software.
Main features
- Direct COG visualization in MapLibre GL JS, via a
cog://URL prefix. - Imagery rendering driven by the COG's own
PhotometricInterpretation: RGB, grayscale, paletted, CMYK, YCbCr and CIELab. - Digital elevation model visualization, as hillshading or 3D terrain.
- ColorBrewer and CARTOColors color ramps for single-band rasters, continuous or discrete.
- Custom per-pixel coloring functions, with full access to every band of the pixel.
- Band arithmetic on multispectral rasters, to compute and symbolize indices such as NDVI in the browser.
- Masking with GeoJSON polygons, and support for the COG's internal mask band.
- Raster metadata access, and pixel value queries at any location, with or without a map.
- Custom HTTP request headers, for COGs behind authentication.
- Works with vanilla JavaScript and with React Map GL.
Typical use cases
- Satellite and aerial imagery viewers.
- Remote sensing analysis on multispectral imagery, computing indices such as NDVI, NDWI or NDBI directly in the map.
- Environmental and climate monitoring applications.
- Digital elevation models and terrain visualization.
- Precision agriculture and vegetation index maps.
- Multitemporal raster animation.
- Serverless geospatial data portals, and large scale raster publication without a map server.
Live examples
Interactive demos covering RGB imagery, an orthophoto with its own alpha band, color ramps, NDVI on a multiband Sentinel-2 image, GeoJSON masking, and a 12 GB digital elevation model covering Catalonia at 2 m/pixel:
- MapLibre COG Protocol demo page — all the examples in this repository, running live.
- Advanced sample viewer — load and inspect your own COG URLs.
- Serverless rasters in MapLibre: the COG protocol extension — article explaining the approach and why we built it.
Installation
npm install @geomatico/maplibre-cog-protocolOr load it from a CDN with a <script> tag, as shown in the vanilla HTML example below.
Requirements
- MapLibre GL JS
^4.5.0,^5.0.0or^6.0.0(peer dependency), except forlocationValuesandgetCogMetadata, which work standalone. Note that MapLibre 6 dropped its UMD build, so it has to be loaded as an ES module, as in the example below. - COGs must be in EPSG:3857 (Web Mercator). This library does not reproject; reading a COG in any other projection throws an error. See COG generation tips.
Usage
For better quality, use always tileSize: 256 to match the size of tiles delivered by the custom protocol.
Vanilla HTML & JS
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://unpkg.com/maplibre-gl@^6.0.0/dist/maplibre-gl.css">
<script src="https://unpkg.com/@geomatico/maplibre-cog-protocol/dist/index.js"></script>
</head>
<body>
<div id="map" style="width: 600px; height: 400px"></div>
<script type="module">
import * as maplibregl from 'https://unpkg.com/maplibre-gl@^6.0.0/dist/maplibre-gl.mjs';
let map = new maplibregl.Map({
container: 'map',
style: 'https://geoserveis.icgc.cat/contextmaps/icgc_mapa_base_gris_simplificat.json',
center: [1.83369, 41.5937],
zoom: 14
});
maplibregl.addProtocol('cog', MaplibreCOGProtocol.cogProtocol);
map.on('load', () => {
map.addSource('imageSource', {
type: 'raster',
url: 'cog://https://labs.geomatico.es/maplibre-cog-protocol/data/image.tif',
tileSize: 256
});
map.addLayer({
id: 'imageLayer',
source: 'imageSource',
type: 'raster'
});
});
</script>
</body>
</html>With React Map GL
npm install @geomatico/maplibre-cog-protocol
import maplibregl from 'maplibre-gl';
import {cogProtocol} from '@geomatico/maplibre-cog-protocol';
import Map from 'react-map-gl/maplibre';
maplibregl.addProtocol('cog', cogProtocol);
const App = () =>
<Map
style={{width: 600, height: 400}}
mapStyle="https://geoserveis.icgc.cat/contextmaps/icgc_mapa_base_gris_simplificat.json"
initialViewState={{longitude: 1.83369, latitude: 41.5937, zoom: 14}}
>
<Source id="imageSource" type="raster" url="cog://https://labs.geomatico.es/maplibre-cog-protocol/data/image.tif" tileSize={256}>
<Layer id="imageLayer" type="raster"/>
</Source>
</Map>;API
Display image COGs
COGs are displayed as images according to their PhotometricInterpretation TIFF tag. Supported
interpretations are WhiteIsZero, BlackIsZero (grayscale), RGB, Palette (using the COG's own
color map), CMYK, YCbCr and CIELab. Any other value throws an error.
- Use a
rastersource with the url prepended withcog:// - Use a
rasterlayer.
map.addSource('sourceId', {
type: 'raster',
url: 'cog://https://labs.geomatico.es/maplibre-cog-protocol/data/image.tif',
tileSize: 256
});
map.addLayer({
id: 'imageId',
source: 'sourceId',
type: 'raster'
});Transparency comes from the COG's internal mask band, its noData value or its alpha sample, in
the same order of precedence GDAL applies:
- If the COG carries an internal mask band, that
mask alone decides which pixels are valid, and
noDatais not used for transparency. This is the most reliable option, and the only dependable one under lossy compression, where JPEG artifacts keep padding pixels from matchingnoDataexactly. - Otherwise, pixels whose color bands all equal
noDataare rendered fully transparent. In a JPEG COG stored as YCbCr,noDatais matched against the decoded RGB values, which is what GDAL exposes and what anoDataof 0 means: black. - Otherwise, if the COG has an alpha sample (an extra band declared as alpha in the TIFF
ExtraSamplestag, which is whatgdalwarp -dstalphaor-co ADD_ALPHA=YESwrites), it is applied as transparency, including partial transparency. Premultiplied (associated) alpha has its colors restored. - A COG with none of the three has no transparent pixels, again as in GDAL. If your imagery
has a black collar, declare a
noDatavalue or keep the alpha band when generating the COG, as in the GDAL commands below.
Tile pixels falling outside the COG's own extent are always transparent, whatever the COG declares.
With JPEG compression GDAL converts an alpha band into a mask band, so rule 1 covers those files. Note that an alpha band costs a full extra band of storage, where a mask band costs about a bit per pixel.
If instead you need transparency driven by a vector geometry, see Mask COG rendering with a GeoJSON polygon.
Display Digital Elevation Model COGs
Single-band COGs can be interpreted as DEMs. Elevations are taken from the first band, with the
COG's scale and offset applied, and encoded into RGB using the Mapbox Terrain-RGB scheme that
MapLibre expects.
As Hillshading
- Use a
raster-demsource with the url prepended withcog://and appended with#dem - Use a
hillshadelayer.
map.addSource('sourceId', {
type: 'raster-dem',
url: 'cog://https://cdn.geomatico.es/pirineo_dem_cog_256.tif#dem',
tileSize: 256
});
map.addLayer({
id: 'hillshadeId',
source: 'sourceId',
type: 'hillshade'
});As 3D Terrain
- Use a
raster-demsource with the url prepended withcog://and appended with#dem, same as above. - Set it as the terrain.
map.addSource('sourceId', {
type: 'raster-dem',
url: 'cog://https://cdn.geomatico.es/pirineo_dem_cog_256.tif#dem',
tileSize: 256
});
map.setTerrain({
source: 'sourceId'
});Apply ColorBrewer or CARTOColor ramp to a single-band COG
COGs with a single band can be also converted to images applying a color ramp. Values are read from
the first band with scale and offset applied; noData, NaN and Infinity pixels are rendered
transparent. As in GDAL, noData is matched against the raw value stored in the file, before
scale and offset are applied.
- Use a
rastersource with the url prepended withcog://and appended with#color:and the color ramp specification. - Use a
rasterlayer.
map.addSource('sourceId', {
type: 'raster',
url: 'cog://https://labs.geomatico.es/maplibre-cog-protocol/data/kriging.tif#color:BrewerSpectral9,1.7,1.8,c',
tileSize: 256
});
map.addLayer({
id: 'imageId',
source: 'sourceId',
type: 'raster'
});The syntax for the #color parameter is #color:<colorScheme>,<minValue>,<maxValue>,<modifiers>, where:
<colorScheme>: Mandatory parameter. One of the built-in color ramps, see the list of possible values in Color Ramp cheatsheet.<minValue>, <maxValue>: Define the data range for color mapping, should map your data's actual range. These are required if we want predictable results, as we can't rely on COG "stats" metadata (not always provided or correctly informed) and cannot read the whole file to get them (that's the point of the library, not having to).<modifiers>: Some characters representing additional configuration. We support:ccontinuous color interpolation (vs discrete).-reverse scale.
Some examples:
- Apply discrete
CartoEarthramp between 1 and 100:#color:CartoEarth,1,100 - Apply continuous
BrewerYlOrRd7ramp between -1 and 1:#color:BrewerYlOrRd7,-1,1,c - Same as above, reversed (so colors go red-orange-yellow instead of yellow-orange-red):
#color:CartoEarth,-1,1,c-.
See other usages in examples. If you need more flexibility, use a Custom Color Function.
Apply a Custom Color Function to any COG
In case you want to apply any other coloring logic, you can provide a function that converts pixel values to RGBA color values, and assign it to the COG URL where it needs to be applied.
Use the setColorFunction method, which needs two arguments:
cogUrl: the COG to which the custom color function will be applied. Don't prepend thecog://protocol here.colorFunction: A function that maps pixel values to color values, whose arguments are:pixel: A TypedArray with the raw pixel data as read from the geotiff, one value per band.color: An Uint8ClampedArray of exactly 4 elements. Set the pixel color by setting the first, second, third and fourth element tored,green,blueandalphavalues respectively.metadata: CogMetadata structure with information about the COG, such asnoData,offsetorscalevalues.
Note that pixel holds the values as stored in the file: unlike #dem and #color, scale and
offset are not applied for you, so use metadata.scale and metadata.offset if your COG
declares them. A custom color function takes precedence over any #dem or #color hash on the URL.
The following example paints values below a given threshold as red, and green otherwise:
const cogUrl = 'https://labs.geomatico.es/maplibre-cog-protocol/data/kriging.tif';
const threshold = 1.75;
// Function is called for every pixel, keep it fast!
MaplibreCOGProtocol.setColorFunction(cogUrl, (pixel, color, metadata) => {
if (pixel[0] === metadata.noData) {
color.set([0, 0, 0, 0]); // Transparent
} else if (pixel[0] < threshold) {
color.set([255, 0, 0, 255]); // Red
} else {
color.set([0, 255, 0, 255]); // Green
}
});
map.addSource('sourceId', {
type: 'raster',
url: `cog://${cogUrl}`, // Use the same URL as in setColorFunction, preppended with "cog://".
tileSize: 256
});
map.addLayer({
id: 'imageId',
source: 'sourceId',
type: 'raster'
});This function will be called for each pixel, keep it as fast as possible!
Some other interesting usages:
- Apply other color scales not listed in the builtin standard ColorBrewer or CartoColors catalog.
- Use custom breakpoints or interpolations.
- Display other bands.
- Combine bands of a multispectral image to calculate indicators on the fly.
Band arithmetic on multispectral rasters
Because the pixel argument holds every band of the pixel, a color function can compute an index
from several bands and symbolize the result, without precomputing a derived raster. The following
example calculates NDVI from a 12-band Sentinel-2 COG and paints it with a d3 threshold scale:
import {scaleThreshold} from 'd3-scale';
const url = './data/sentinel2.tif';
const ndviColorScale = scaleThreshold()
.domain([-1.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8])
.range([
[0x00, 0x00, 0x00, 0xFF], // NDVI < -1.0
[0x2C, 0x7B, 0xB6, 0xFF], // -1.0 <= NDVI < 0.1
[0xFD, 0xAE, 0x61, 0xFF], // 0.1 <= NDVI < 0.2
[0xFE, 0xE0, 0x8B, 0xFF], // 0.2 <= NDVI < 0.3
[0xFF, 0xFF, 0xBF, 0xFF], // 0.3 <= NDVI < 0.4
[0xD9, 0xEF, 0x8B, 0xFF], // 0.4 <= NDVI < 0.5
[0xA6, 0xD9, 0x6A, 0xFF], // 0.5 <= NDVI < 0.6
[0x66, 0xBD, 0x63, 0xFF], // 0.6 <= NDVI < 0.7
[0x1A, 0x98, 0x50, 0xFF], // 0.7 <= NDVI < 0.8
[0x00, 0x68, 0x37, 0xFF] // NDVI >= 0.8
])
.unknown([0x00, 0x00, 0x00, 0x00]); // NaN or undefined => transparent
setColorFunction(url, (pixel, color) => {
const [B01, B02, B03, B04, B05, B06, B07, B08, B09, B11, B12, B8A] = pixel;
const NDVI = (B8A - B04) / (B8A + B04);
color.set(ndviColorScale(NDVI));
});The same arithmetic works for any other index (NDWI, NDBI, burn severity...), and changing the
formula, the thresholds or the palette only requires reloading the layer, never regenerating data.
Pair it with locationValues to read the index value under
the cursor.
See the custom color example for the full working demo, which does exactly this over a Sentinel-2 image and shows the NDVI value on mouse hover.
To remove a previously set color function and go back to the default rendering, pass undefined as
the second argument:
setColorFunction(cogUrl, undefined);Changing the color function only affects tiles rendered from then on, as MapLibre keeps already rendered tiles. To force a refresh, remove and re-add the layer:
setColorFunction(cogUrl, newColorFunction);
map.removeLayer('imageLayer');
map.addLayer({id: 'imageLayer', source: 'sourceId', type: 'raster'});The timeseries example uses this to animate through the bands of a multi-band COG.
Reuse the built-in color ramps
The color ramps used by #color: are also exported, so a custom color function can reuse them:
colorSchemeNames: array with the names of every built-in ramp.colorScale({colorScheme, min, max, isContinuous, isReverse}): returns an interpolator function mapping a value to an[r, g, b]array.isContinuousandisReversedefault tofalseand are the equivalent of thecand-URL modifiers. Alternatively tocolorScheme, acustomColorsarray of at least two hex colors can be given.
import {colorScale, setColorFunction} from '@geomatico/maplibre-cog-protocol';
const interpolate = colorScale({colorScheme: 'BrewerRdYlBu10', min: 1, max: 7, isContinuous: true});
setColorFunction(url, (pixel, color, {noData, scale, offset}) => {
const value = pixel[0];
if (value === noData) {
color[3] = 0;
} else {
color.set([...interpolate(value * scale + offset), 224]); // 224 = semi-transparent
}
});The Color Ramp cheatsheet is built with these two exports.
Transparency from the COG's internal mask band
No API needed: if the COG contains an internal mask band (a TIFF image whose NewSubfileType has
the mask bit set), it is read alongside the data and pixels masked out in the file are rendered
fully transparent. This applies to every rendering mode, custom color functions included.
GDAL carries such a band over when the source dataset already has one, and writes one in place of an alpha band when compressing with JPEG.
An alpha sample declared in ExtraSamples is read the same way, and it can express partial
transparency, not only on/off.
Mask COG rendering with a GeoJSON polygon
Use setMask to restrict rendering to the area covered by a GeoJSON FeatureCollection of Polygon or MultiPolygon features. Pixels outside the mask are set to transparent. Other geometry types in the collection are ignored.
Use clearMask (or setMask(undefined)) to remove the mask.
The mask is global and applies to every COG source currently on the map. As with color functions, it
takes effect on tiles rendered from then on, so set it before adding the source, or force a refresh
by removing and re-adding the layer. Masking relies on OffscreenCanvas; where that is unavailable,
tiles are rendered unmasked.
import {setMask, clearMask} from '@geomatico/maplibre-cog-protocol';
const mask = {
type: 'FeatureCollection',
features: [{
type: 'Feature',
geometry: {
type: 'Polygon',
coordinates: [[[2.0, 41.0], [3.0, 41.0], [3.0, 42.0], [2.0, 42.0], [2.0, 41.0]]]
},
properties: {}
}]
};
setMask(mask); // apply mask
clearMask(); // remove maskSee masking example for a full working demo.
[unstable] Get COG metadata
Use the getCogMetadata(url) to obtain metadata about a COG file. It returns a promise resolving to:
offset,scale: GDAL offset and scale for the first band, defaulting to0.0and1.0.noData: noData value for the first band, orundefined.bbox:[west, south, east, north]bounds, in geographic coordinates.artist: the TIFFArtisttag, if present.photometricInterpretation,bitsPerSample,colorMap: raw TIFF tags used for rendering.alphaBand: index of the sample holding alpha, if the COG declares one, andpremultipliedAlpha: whether it is associated (premultiplied) alpha.images: one entry per image in the file (full resolution, overviews and masks), each with itszoomlevel and theisOverview/isMaskflags.
These are internals that may change in future releases, so use with caution. The promise rejects if the COG is not in EPSG:3857.
Usage example:
MaplibreCOGProtocol.getCogMetadata(url).then(metadata => console.log(metadata.bbox));See the metadata example for an interactive version.
Get pixel values for a given location
The locationValues(url, location, zoom?) method reads pixel values for a given location, with the COG's scale and offset applied. It returns an array of numbers, one for each band in the COG. If zoom is indicated, it will query the nearest overview corresponding to that zoom level; otherwise the full resolution image is used.
Every band comes back as NaN wherever nothing would be drawn: outside the image, on noData
pixels, where the COG's mask band or alpha sample marks the pixel as transparent, and outside the
GeoJSON mask when one is set.
Example usage in conjunction with maplibre API to get COG values on mouse hover:
import {locationValues} from '@geomatico/maplibre-cog-protocol';
map.on('mousemove', ({lngLat}) => {
locationValues(
'./data/kriging.tif',
{latitude: lngLat.lat, longitude: lngLat.lng},
map.getZoom()
).then(console.log);
});locationValues doesn't depend on MapLibre API or the CogProtocol, so it can be used to query raster values in applications without a map:
import {locationValues} from '@geomatico/maplibre-cog-protocol';
const url = 'https://labs.geomatico.es/maplibre-cog-protocol/data/kriging.tif';
locationValues(url, {latitude: 41.656278, longitude: 0.501394}).then(console.log);Send custom request headers
Use setRequestHeaders(headers) to add HTTP headers to the requests made to fetch COGs, for
instance to read from a server requiring authentication:
import {setRequestHeaders} from '@geomatico/maplibre-cog-protocol';
setRequestHeaders({Authorization: 'Bearer <token>'});The headers are global, applying to every COG read afterwards, including locationValues and
getCogMetadata. Because opened files are cached, call this before the COG is first requested; a
later call won't affect files already opened.
Notes
- Attribution: the TIFF
Artisttag of the COG, if present, is exposed as the source attribution, and thus shown in MapLibre's attribution control. - Zoom range: the source's
maxzoomis derived from the resolution of the COG's own overviews, andminzoomis always 0. Zooming beyond the COG's resolution upsamples the highest resolution image available. - Caching: opened files, their metadata and the decoded tiles are cached in memory, keyed by URL, and expire after an hour. Requesting a tile that is already cached issues no network request.
COG generation tips
COG should be in EPSG:3857 (Google Mercator) projection, as this library doesn't reproject and won't understand any other projection.
For better performance, use the Google Maps tiling scheme with 256x256 blocksize.
For RGB images, JPEG yCbCr (lossy) compression is recommended. For lossless compression, deflate gives good decoding performance on the browser.
Sample GDAL commands (using docker for convenience, but not needed):
RGB Image (lossy compression)
Let GDAL add the alpha band: with JPEG it is written as a lossless 1-bit mask band, which this
library reads, and which marks the padding around a rotated or clipped image exactly. Do not pass
-dstnodata: JPEG artifacts would leave a dark fringe of pixels that no longer match it.
gdalwarp source.tif target.tif -of COG -co TILING_SCHEME=GoogleMapsCompatible -co COMPRESS=JPEG -co OVERVIEWS=IGNORE_EXISTINGRGB Image (lossless compression)
Here GDAL keeps the alpha band it adds as a fourth sample, which is read as transparency, so the default is what you want. Use ZSTD or DEFLATE which are faster to decode in the browser than LZW:
gdalwarp source.tif target.tif -of COG -co TILING_SCHEME=GoogleMapsCompatible -co COMPRESS=DEFLATE -co OVERVIEWS=IGNORE_EXISTINGTo save that fourth band, drop it with -co ADD_ALPHA=NO and use a noData value instead.
Remember that this costs you that color: with noData 0, genuinely black pixels become transparent
too. Mind where the value is declared: when TILING_SCHEME makes the COG driver reproject,
gdalwarp does not carry -dstnodata into the output file, so declare it on the source:
gdal_edit.py -a_nodata 0 source.tif
gdalwarp source.tif target.tif -of COG -co TILING_SCHEME=GoogleMapsCompatible -co COMPRESS=DEFLATE -co OVERVIEWS=IGNORE_EXISTING -co ADD_ALPHA=NODigital Elevation Model
NaN is the ideal noData value for float data, as it cannot collide with a real measurement. It
only works for Float32/Float64 rasters though: on an integer one, GDAL rounds it to 0 and warns.
Integer data needs a value outside its real range instead, such as -a_nodata -32768.
For float DEMS use LERC compression. Another strategy is to convert to Int16 and scale the values, which is what Mapbox Terrain-RGB does.
As above, the value goes on the source, not in the warp:
gdal_edit.py -a_nodata nan source.tif
gdalwarp source.tif target.tiff -of COG -co TILING_SCHEME=GoogleMapsCompatible -co COMPRESS=LERC -co MAX_Z_ERROR=0.1 -co RESAMPLING=BILINEAR -co OVERVIEW_RESAMPLING=AVERAGE -co OVERVIEWS=IGNORE_EXISTING -co ADD_ALPHA=NOAligning tiles to the tiling scheme
Only the full-resolution image is guaranteed to line up with TILING_SCHEME; overview levels are
usually offset by a fraction of a tile, so a tile there needs up to 4 GeoTIFF blocks instead of 1.
ALIGNED_LEVELS=N aligns the top N levels, padding the image out to the next tile boundary —
cheap with SPARSE_OK=YES, since the padding is uniform noData. Growth isn't linear, so compare
gdalinfo <target>.tif | grep 'Size is' across a few values of N before picking the optimal one.
gdalwarp source.tif target.tif -of COG -co TILING_SCHEME=GoogleMapsCompatible -co COMPRESS=LERC -co ALIGNED_LEVELS=8 -co SPARSE_OK=YES -co OVERVIEWS=IGNORE_EXISTINGChecking what a COG declares
gdalinfo target.tif | grep -E 'NoData|Mask Flags'A COG with no NoData Value, no Mask Flags: PER_DATASET and no ColorInterp=Alpha band has no
transparency at all: every pixel it contains is rendered opaque.
For developers
Node version is the one in .nvmrc.
npm install
npm test # lint and run the test suite with coverage
npm run watch # rebuild dist/ and serve examples/ with live reloadBreaking changes between versions are documented in MIGRATIONS.md.
Making a new release
npm version [patch | minor | major] # bumps, commits, tags, and pushes (postversion hook)
npm run build
npm publish --access public
npm run gh-publish # publish examples to labs.geomatico.esPushing the tag triggers a GitHub Actions workflow that creates the GitHub Release with auto-generated notes from merged PRs.
About Geomatico
MapLibre COG Protocol is developed and maintained by Geomatico, an open source geospatial software development and GIS consulting company.
We build custom web mapping platforms, raster processing workflows and geospatial applications using MapLibre, TypeScript, PostGIS, GDAL, GeoServer and cloud native spatial data formats, with a focus on geographic information analysis and publishing, mobility and the environment.
Need to publish satellite imagery, elevation models or other large raster datasets on the web? Talk to Geomatico.
