Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/GeoTIFF/georaster-to-canvas

Converts a GeoRaster into a Canvas
https://github.com/GeoTIFF/georaster-to-canvas

canvas georaster geotiff

Last synced: 3 months ago
JSON representation

Converts a GeoRaster into a Canvas

Awesome Lists containing this project

README

        

# georaster-to-canvas
Converts a GeoRaster into a Canvas

# usage
```javascript
const geoblaze = require("geoblaze");
const toCanvas = require("georaster-to-canvas");
const url = "https://s3.amazonaws.com/geoblaze/wildfires.tiff";
geoblaze.load(url).then(georaster => {
const canvas = toCanvas(georaster, { height: 500, width: 500 });
});
```