Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/GeoTIFF/georaster-to-canvas
- Owner: GeoTIFF
- License: mit
- Created: 2019-04-10T04:26:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T01:31:42.000Z (over 5 years ago)
- Last Synced: 2024-07-27T17:54:53.492Z (4 months ago)
- Topics: canvas, georaster, geotiff
- Language: JavaScript
- Size: 3.91 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 });
});
```