From 6c6366aa004f4f33821348efff815a9d35650565 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Wed, 21 Aug 2024 15:18:49 -0600 Subject: [PATCH 1/2] Add quickstart to README (#549) Co-authored-by: Jessica Scheick --- README.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.rst b/README.rst index 5240a1113..5ef8b1ba7 100644 --- a/README.rst +++ b/README.rst @@ -85,6 +85,32 @@ Alternatively, you can also install icepyx using `pip Date: Wed, 21 Aug 2024 15:04:40 -0700 Subject: [PATCH 2/2] create class outline for gedi --- icepyx/quest/dataset_scripts/gedi.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 icepyx/quest/dataset_scripts/gedi.py diff --git a/icepyx/quest/dataset_scripts/gedi.py b/icepyx/quest/dataset_scripts/gedi.py new file mode 100644 index 000000000..69e72ff0e --- /dev/null +++ b/icepyx/quest/dataset_scripts/gedi.py @@ -0,0 +1,25 @@ +from icepyx.quest.dataset_scripts.dataset import DataSet + +class Gedi(DataSet): + + def __init__(self): + pass + + def search_data(self): + """ + Query the dataset (i.e. search for available data) + given the spatiotemporal criteria and other parameters specific to the dataset. + """ + raise NotImplementedError + + def download(self): + """ + Download the data to your local machine. + """ + raise NotImplementedError + + def save(self, filepath): + """ + Save the downloaded data to a directory on your local machine. + """ + raise NotImplementedError \ No newline at end of file