Git Product home page Git Product logo

maplibre-gl-cog's Introduction

Maplibre-gl-cog

ARCHIVED: use titiler instead

This library aims to provide maplibre support for Cloud Optimized GEOTiff

NOTES: The library requires that the GEOTiff has 4 bands (RGBA) and the values of each band is the range 0-255

Dependencies

  • GEOTiff.js
  • fast-png

Maplibre support

The library provides support up to maplibre 3.x.

How to use it

In the map style prepend cog:// to the url of the resource, for example: cog://http://my-server.com/path/to/cloud-optimized-geotiff.tif. NOTE: also relative paths are supported (cog://cloud-optimized-geotiff.tif)

Vanilla JS

<link rel='stylesheet' href='https://unpkg.com/[email protected]/dist/maplibre-gl.css' />
<script src='https://unpkg.com/[email protected]/dist/maplibre-gl.js'></script>
<script src='maplibre-gl-cog.js'></script>
<script>
    const protocol = new maplibreglCOG.ProtocolV3();
    maplibregl.addProtocol('cog', protocol.tile);

    const map = new maplibregl.Map({
        container: 'map',
        style: 'style.json'
    });
</script>

ES6

import { ProtocolV3 } from 'maplibre-gl-cog';
const protocol = new maplibreCOG.ProtocolV3();
maplibregl.addProtocol('cog', protocol.tile);

How to generate a valid geotiff

Here is an example script that turns a grayscale single band GEOTiff into a RGBA compatible COG

export MASK=$(mktemp .cog.XXXXXXX.tif -p .)
export NORMALIZED=$(mktemp .cog.XXXXXXX.tif -p .)
export RGBA=$(mktemp .cog.XXXXXXX.tif -p .)

gdal_translate -scale 0 1 255 255 $1 $MASK   # turns any value into 255 to create a mask
gdal_translate -scale 0 1 0 255 $1 $NORMALIZED   # rescale the values to 0-255
gdal_merge.py -separate -o $RGBA -of GTiff $NORMALIZED $NORMALIZED $NORMALIZED $MASK  # creates 3 bands + mask
gdal_translate $RGBA $2 -of COG -co TARGET_SRS=EPSG:3857 -co ADD_ALPHA=NO -co COMPRESS=LZW -co LEVEL=9   # generate the COG
rm $MASK $NORMALIZED $RGBA;

maplibre-gl-cog's People

Contributors

nicokant avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.