Daniel J. Dufour

Results 398 comments of Daniel J. Dufour

Hi, @meteozgz . GeoRasterLayer doesn't currently support color tables, but you can use the pixelValuesToColorFn as a workaround. You can grab the color table is JSON file using gdalinfo. Here's...

No problem. It seems like this line `'rgb(${r},${g},${b},${a});'` is using regular apostrophes, but you must use back ticks. Change it from using ' to using `

My mistake. The A value in rgba should be between 0 and 1, so we must divide by 255. Like `rgb(${r},${g},${b},${a/255});`

Hello, @meteozgz . Yesterday, I released support for color tables. This appears to be working now. Let me know if it works for you. This is a screenshot of the...

Hi, @rohith231 . Could you describe the image you are looking for? Is it "regular" satellite imagery, weather data, or something else? Could you share it? Also, could you share...

I'm definitely open to rewriting the library in TypeScript, too!

There's two examples of georaster-layer-for-leaflet that might be of interest: - Loading a Cloud Optimized GeoTIFF via a script tag. You can view the source code [here](https://github.com/GeoTIFF/georaster-layer-for-leaflet-example/blob/master/examples/load-cog-via-script-tag.html) and the live...

update: pg-mem also supports typeorm which is what aqualink api uses: https://github.com/oguimbal/pg-mem/wiki/Libraries-adapters#-typeorm

maybe add optional geotransform param that have 6-parameter gdal geotransform ```js geowarp({ geotransform: [a, b, c, d, e, f], }) ``` we can use geoaffine to calculate the inverse