LP DAAC ECOSTRESS

example with ECOSTRESS LSTE Kerchunk Reference File

!mamba install kerchunk -y --quiet
!mamba install h5py=3.2 -y --quiet # Default version in this environment does not work. Must update
import numpy as np
import xarray as xr
import matplotlib.pyplot as plt
import s3fs
import datetime as dt
import logging
import fsspec
import ujson
import requests
from tqdm import tqdm
from glob import glob
import os
import hvplot.xarray

# The xarray produced from the reference file throws a SerializationWarning for each variable. Will need to explore why
#import warnings
#warnings.simplefilter("ignore")