Explore Samples¶
Here you can filter the samples and open them in cdse-tsbrowser. For this you need a Copernicus Dataspace Ecosystem account and credentials configured for use on third-party sites.
See the instructions here on how to set this up.
You can then use the interactive table below, to filter the dataset, and click the provided links to explore the sample in your browser.
In [7]:
Copied!
import itables
from utils import polars_url_table
from IPython.display import HTML, display
itables.init_notebook_mode(all_interactive=True)
itables.options.allow_html = True
itables.options.maxBytes = "10MB"
base_url = "https://label.nadir.earth/?"
url_table = polars_url_table(base_url)
html = itables.to_html_datatable(
url_table,
columnControl=["order", "searchDropdown"],
ordering={"indicators": False, "handler": False},
columnDefs=[{"width": "150px", "targets": "_all"}],
autoWidth=False,
)
css = """
.dt-container {
font-size: small;
}
"""
display(HTML(f"<style>{css}</style>"))
display(HTML(html))
import itables
from utils import polars_url_table
from IPython.display import HTML, display
itables.init_notebook_mode(all_interactive=True)
itables.options.allow_html = True
itables.options.maxBytes = "10MB"
base_url = "https://label.nadir.earth/?"
url_table = polars_url_table(base_url)
html = itables.to_html_datatable(
url_table,
columnControl=["order", "searchDropdown"],
ordering={"indicators": False, "handler": False},
columnDefs=[{"width": "150px", "targets": "_all"}],
autoWidth=False,
)
css = """
.dt-container {
font-size: small;
}
"""
display(HTML(f""))
display(HTML(html))