%%capture
%matplotlib widget
import matplotlib
import markdown
import io
from ipywidgets import widgets, HTML, Output, FileUpload
from velocity_widget import ITSLIVE
matplotlib.rcParams['figure.figsize'] = [9, 5]
matplotlib.rcParams["figure.autolayout"] = True
matplotlib.pyplot.style.use('ggplot')
velocity_widget = ITSLIVE()
Instructions: Click and drag on the map to pan the field of view. Select locations by double-clicking on the map then press Plot. Once plotted you can change the Variable that is being shown and how the markers are colored using Plot By. You can drag individual points after they are placed to relocate them, and then Plot again or Clear markers to start over. You can also single-click on the map to populate the Lat and Lon boxes then add a point using the Add Point. Lat and Lon can also be edited manually. Hovering your cursor over the plot reveals tools to zoom, pan, and save the figure.
Press Export Data to generate comma separated value (.csv) files of the data. Press Download Data to retrieve locally. Export Data must be pressed each time new data is requested. Check out the video tutorial if you're a visual learner:
Data are Version 2 of the ITS_LIVE global glacier velocity dataset that provides up-to-date velocities from Sentinel-1, Sentinel-2, Landsat-8 and Landsat-9 data. Version 2 annual mosaics are coming soon, and will be followed by Landsat 7 and improved Landsat 9 velocities. Please refer to the project website for known issues, citation and other product information.
# we display the UI
velocity_widget.display(mobile=False)
# we can access the zarr cubes via
cubes = velocity_widget.dct.open_cubes
[cube for cube in cubes]
# then load them with xarray e.g.
# ds = cubes["s3://its-live-data/datacubes/v02/N70W040/ITS_LIVE_vel_EPSG3413_G0120_X-150000_Y-2150000.zarr"
# ds
# Antarctic elevation change data cube
import xarray as xr
ds = xr.open_dataset("s3://its-live-data/elevation/v01/ANT_G1920V01_GroundedIceHeight.zarr",
engine="zarr",
storage_options={"anon": True})
# lon, lat
x, y = velocity_widget.dct.transformer_3031.transform(-87.34, -74.56)
df = ds["dh"].sel(x=x, y=y, method="nearest").to_dataframe().dropna()
df
ts = df["dh"]
ts
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(5, 3))
# plot the cumulative histogram
ts.plot(ax=ax)