GeoTIFF / georaster-layer-for-leaflet-example

Simple Example of GeoRasterLayer for Leaflet
https://geotiff.github.io/georaster-layer-for-leaflet-example/
Apache License 2.0
85 stars 26 forks source link

how can i apply Geotiff raster image on different map its in australia region need to apply in canada region like this similar raster image i had tried Qgis and other software to convert to .tiff format #7

Open rohith231 opened 4 years ago

rohith231 commented 4 years ago

how can i apply Geotiff raster image on different map its in australia region need to apply in canada region like this similar raster image i had tried Qgis and other software to convert to .tiff format https://github.com/stuartmatthews/leaflet-geotiff

DanielJDufour commented 4 years ago

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 any code that you have tried?

DanielJDufour commented 4 years ago

If you can't attach the files, feel free to email them to daniel.j.dufour@gmail.com

rohith231 commented 4 years ago

Hi Daniel , Thank u for the reply

Basically i need to create a raster image for the country canada like the below screenshot image which i had attached it is for australia region .How can i create a raster image for canada or any other country and apply it on map tried so many times to create a raster image by taking map screenshot & converting to .tiff format but still it does not worked .

Can u create the below Geo.png image to raster colored format to .tiff and Load it on map here: http://app.geotiff.io/ I need to create the same raster colored image and load it to another country location tried so many but the image is not loading properly here in this site http://app.geotiff.io/ If the raster image loads in the above link i can apply to my code and load the raster image

This is the code which i had refered: https://github.com/stuartmatthews/leaflet-geotiff this is the code what i applied const windSpeedUrl = "https://stuartmatthews.github.io/leaflet-geotiff/tif/wind_speed.tif"; const windSpeedOptions = { band: 0, displayMin: 0, displayMax: 30, name: "Wind speed", colorScale: "rainbow", clampLow: false, clampHigh: true, vector:true };

const windDirectionUrl = "https://stuartmatthews.github.io/leaflet-geotiff/tif/wind_direction.tif";
const windDirectionOptions = {
  band: 0,
  name: "Wind direction",
  arrowSize: 40
};

ras Geo