Display and query Corine Land Cover data¶

Open a map and a label to display results of identify operations:

In [ ]:
from ipywidgets import widgets
map = Map()
label = widgets.Label(layout=widgets.Layout(width='100%', max_width='1000px'))
widgets.VBox([map, label])

Add a layer displaying Corine Land Cover with transparency:

In [ ]:
p = inter.ImageCollection("CORINE").process().opacity(128)
map.clear()
map.addLayer(p.toLayer())

Activate identify:

In [ ]:
mark = inter.identify(map,p,label)
In [ ]: