Coder Social home page Coder Social logo

Comments (3)

giswqs avatar giswqs commented on June 6, 2024

Can you provide a complete code example that can reproduce issue?

from leafmap.

giswqs avatar giswqs commented on June 6, 2024

The add_cog_layer only supports matplotlib colormaps. You can use the greens colormap use render ndvi.

import leafmap

m = leafmap.Map()
url = "https://open.gishub.org/data/raster/landsat.tif"
m.add_cog_layer(url, bands=[4, 1, 2], name="Landsat")
m.add_cog_layer(url, expression='(b4-b1)/(b4+b1)', rescale='-1, 1', colormap_name='greens', name="NDVI")
m.add("inspector")
m

image

from leafmap.

anikaweinmann avatar anikaweinmann commented on June 6, 2024

I tried it in https://github.com/mundialis/fossgis2024/blob/actinia-ws/notebooks/actinia_fossgis.ipynb. Using colormap_name="greens" is working. When I try the following:

result_url = jsonResponse["urls"]["resources"][0]
print(result_url)
raster_url = result_url.replace("//", f"//{actinia_user}:{actinia_pw}@")

# visualization with leafmap
m = leafmap.Map()
m.add_basemap("Esri.WorldImagery")
m.add_cog_layer(
    raster_url,
    label="NDVI map",
    colormap_name="ndvi",
)
# show map
m

I get the error message:

---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
~/tmp/ipykernel_322494/2862253705.py in <module>
      6 m = leafmap.Map()
      7 m.add_basemap("Esri.WorldImagery")
----> 8 m.add_cog_layer(
      9     raster_url,
     10     label="NDVI map",

~/.local/lib/python3.10/site-packages/leafmap/leafmap.py in add_cog_layer(self, url, name, attribution, opacity, shown, bands, titiler_endpoint, zoom_to_layer, **kwargs)
    998         vis_bands = [available_bands[idx - 1] for idx in indexes]
    999 
-> 1000         tile_url = cog_tile(url, bands, titiler_endpoint, **kwargs)
   1001         bounds = cog_bounds(url, titiler_endpoint)
   1002         self.add_tile_layer(tile_url, name, attribution, opacity, shown)

~/.local/lib/python3.10/site-packages/leafmap/stac.py in cog_tile(url, bands, titiler_endpoint, **kwargs)
    209         f"{titiler_endpoint}/cog/{TileMatrixSetId}/tilejson.json", params=kwargs
    210     ).json()
--> 211     return r["tiles"][0]
    212 
    213 

KeyError: 'tiles'

I also tried to add rescalling of my Tif to [-1 , 1] or [0, 1], but it leads to the same error.

from leafmap.

Related Issues (20)

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.