diff --git a/.github/workflows/rtd_analytics.yml b/.github/workflows/rtd_analytics.yml new file mode 100644 index 000000000..293d9bdd0 --- /dev/null +++ b/.github/workflows/rtd_analytics.yml @@ -0,0 +1,45 @@ +# holder action for if/when RTD Analytics has an API endpoint (not implemented as of June 2026) +name: Get Read the Docs (RTD) analytics +on: + # schedule: + # # runs once a month on the first + # - cron: "55 20 1 * *" + workflow_dispatch: + +permissions: {} + +jobs: + # This workflow contains a single job called "rtd_stats" + rtd_stats: + # The type of runner that the job will run on + runs-on: ubuntu-latest + environment: + name: read-the-docs + permissions: + contents: write # for Git to git push + if: github.repository_owner == 'icesat2py' + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + ref: "traffic" + persist-credentials: true + + # Pulls RTD stats, adds them to existing CSV file + - name: Update rtd stats files + env: + RTD_API_TOKEN: ${{ secrets.RTD_API_TOKEN }} + run: | + pip install -U pip + pip install -r requirements.txt + python ./doc/source/tracking/rtdstats/get_rtd_stats.py + + # Commits files to repository + - name: Commit changes + uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10.0.0 + with: + author_name: Jessica Scheick + message: "RTD analytics auto-update" + add: "./doc/source/tracking/rtdstats/*" diff --git a/.gitignore b/.gitignore index d3d48cf16..d2bc889a3 100644 --- a/.gitignore +++ b/.gitignore @@ -99,6 +99,9 @@ venv.bak/ # Rope project settings .ropeproject +# VSCode project settings +.vscode + # mkdocs documentation /site @@ -128,3 +131,5 @@ venv.bak/ !views.csv !downloads_data.csv !sys_downloads_data.csv +!pageview_data.csv +!searches_data.csv diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0ea59d30a..a78885cf8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,6 +22,7 @@ repos: rev: v2.4.2 hooks: - id: codespell + exclude: "doc/source/tracking/rtdstats/searches_data.csv" additional_dependencies: - tomli diff --git a/doc/source/tracking/rtdstats/get_rtd_stats.py b/doc/source/tracking/rtdstats/get_rtd_stats.py new file mode 100644 index 000000000..296744f86 --- /dev/null +++ b/doc/source/tracking/rtdstats/get_rtd_stats.py @@ -0,0 +1,86 @@ +import os + +import pandas as pd + +cwd = os.getcwd() + +trackpath = f"{cwd}/doc/source/tracking/rtdstats/" +pageviewfn = "pageview_data.csv" +searchfn = "searches_data.csv" + +# rtd_token = os.environ["RTD_API_TOKEN"] +# headers = {"Authorization": f"Token {rtd_token}"} +# base = "https://app.readthedocs.org" + + +# Turns out you cannot yet get the analytics data from the API, only the UI +# This function has the scaffolding to get the data if it's ever implemented +# def fetch_rtd_analytics(url, headers, output_path=None): +# """Fetch analytics from a Read the Docs URL and return a DataFrame.""" +# try: +# resp = requests.get(url, headers=headers, timeout=30) +# data = resp.json() +# except Exception: +# return None + +# if not resp.ok: +# return None + +# if isinstance(data, dict) and "results" in data: +# results = data.get("results", []) +# if results: +# df = pd.json_normalize(results) +# if output_path: +# df.to_csv(output_path, index=False) +# return df +# return None + +# if isinstance(data, list): +# df = pd.json_normalize(data) +# if output_path: +# df.to_csv(output_path, index=False) +# return df + +# return None + + +### Collect the analytics data and combine it with whatever already exists +### must manually download the csv and rename it to `pageview.csv` +# pageviews = fetch_rtd_analytics( +# f"{base}/api/v3/projects/icepyx/", headers +# ) +pageviews = pd.read_csv(trackpath + "pageview.csv") +exist_pageviews = pd.read_csv(trackpath + pageviewfn) + +pageviews = pageviews.merge( + exist_pageviews, how="outer", on=["Path", "Date", "Version", "Views"] +) + +# remove duplicate entries; sort default is ascending +pageviews = pageviews.sort_values(["Date"], ignore_index=True).drop_duplicates( + subset=["Date", "Version", "Path"], keep="last" +) + +pageviews.sort_values(["Date"], ignore_index=True).to_csv( + trackpath + pageviewfn, index=False +) + +# see which pages have most views +print(pageviews.groupby("Path").sum().sort_values(["Views"], ascending=False)) + + +# searches = fetch_rtd_analytics(f"{base}/api/v3/projects/icepyx/search-terms/", headers) + +searches = pd.read_csv(trackpath + "searches.csv") +exist_searches = pd.read_csv(trackpath + searchfn) + +searches = searches.merge( + exist_searches, how="outer", on=["Created Date", "Query", "Total Results"] +) + +searches.sort_values(["Query"], ignore_index=True).to_csv( + trackpath + searchfn, index=False +) + +# print out what most common query words are +print(searches.groupby("Query").count()) diff --git a/doc/source/tracking/rtdstats/pageview_data.csv b/doc/source/tracking/rtdstats/pageview_data.csv new file mode 100644 index 000000000..d152747ce --- /dev/null +++ b/doc/source/tracking/rtdstats/pageview_data.csv @@ -0,0 +1,1956 @@ +Date,Version,Path,Views +2026-03-03 00:00:00,bib,/community/resources.html,2 +2026-03-03 00:00:00,latest,/community/resources.html,1 +2026-03-03 00:00:00,stable,/community/resources.html,1 +2026-03-03 00:00:00,stable,/contributing/code_of_conduct_link.html,1 +2026-03-03 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-03 00:00:00,stable,/contributing/release_guide.html,1 +2026-03-03 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-03-03 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-03 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-03 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-03 00:00:00,latest,/getting_started/install.html,4 +2026-03-03 00:00:00,latest,/index.html,11 +2026-03-03 00:00:00,latest,/tracking/citations.html,1 +2026-03-03 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-03 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-04 00:00:00,latest,/community/contact.html,1 +2026-03-04 00:00:00,latest,/contributing/attribution_link.html,1 +2026-03-04 00:00:00,stable,/contributing/attribution_link.html,1 +2026-03-04 00:00:00,latest,/contributing/release_guide.html,1 +2026-03-04 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-04 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-03-04 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-04 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-04 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-04 00:00:00,stable,/getting_started/citation_link.html,1 +2026-03-04 00:00:00,latest,/getting_started/install.html,1 +2026-03-04 00:00:00,latest,/index.html,5 +2026-03-04 00:00:00,v2.0.0,/tracking/citations.html,1 +2026-03-04 00:00:00,latest,/tracking/downloads.html,1 +2026-03-04 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-03-04 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-03-04 00:00:00,v2.0.1,/user_guide/documentation/read.html,1 +2026-03-05 00:00:00,latest,/community/resources.html,1 +2026-03-05 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-05 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-03-05 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-03-05 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-03-05 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-03-05 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-03-05 00:00:00,v2.0.1,/example_notebooks/IS2_data_visualization.html,1 +2026-03-05 00:00:00,latest,/getting_started/install.html,3 +2026-03-05 00:00:00,latest,/index.html,6 +2026-03-05 00:00:00,development,/user_guide/changelog/index.html,1 +2026-03-05 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-03-05 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-05 00:00:00,stable,/user_guide/documentation/query.html,1 +2026-03-06 00:00:00,latest,/_icepyx/icepyx.Query.product_version.html,1 +2026-03-06 00:00:00,bib,/community/resources.html,2 +2026-03-06 00:00:00,latest,/community/resources.html,1 +2026-03-06 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-03-06 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-06 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-06 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-06 00:00:00,v2.0.0,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-06 00:00:00,latest,/example_notebooks/IS2_data_access.html,9 +2026-03-06 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-06 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,4 +2026-03-06 00:00:00,latest,/example_notebooks/IS2_data_variables.html,2 +2026-03-06 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-03-06 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,4 +2026-03-06 00:00:00,latest,/getting_started/install.html,4 +2026-03-06 00:00:00,v2.0.1,/getting_started/install.html,1 +2026-03-06 00:00:00,latest,/index.html,10 +2026-03-06 00:00:00,v2.0.1,/index.html,1 +2026-03-06 00:00:00,latest,/tracking/citations.html,1 +2026-03-06 00:00:00,latest,/user_guide/changelog/index.html,2 +2026-03-06 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-06 00:00:00,latest,/user_guide/changelog/v2.0.1.html,2 +2026-03-06 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-06 00:00:00,stable,/user_guide/documentation/read.html,1 +2026-03-07 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-03-07 00:00:00,stable,/community/resources.html,1 +2026-03-07 00:00:00,v2.0.0,/community/resources/IS2_software.html,2 +2026-03-07 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-07 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-03-07 00:00:00,latest,/example_notebooks/IS2_data_access.html,6 +2026-03-07 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-07 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-03-07 00:00:00,latest,/example_notebooks/IS2_data_variables.html,4 +2026-03-07 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-03-07 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,3 +2026-03-07 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-07 00:00:00,latest,/getting_started/install.html,1 +2026-03-07 00:00:00,v2.0.1,/getting_started/install.html,1 +2026-03-07 00:00:00,latest,/index.html,3 +2026-03-07 00:00:00,v2.0.0,/index.html,1 +2026-03-07 00:00:00,latest,/tracking/downloads.html,1 +2026-03-07 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_granules.html,1 +2026-03-07 00:00:00,development,/user_guide/documentation/icepyx.html,1 +2026-03-07 00:00:00,bib,/user_guide/documentation/query.html,1 +2026-03-07 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-03-08 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-03-08 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-03-08 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-08 00:00:00,latest,/getting_started/install.html,1 +2026-03-08 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-08 00:00:00,latest,/index.html,8 +2026-03-08 00:00:00,v2.0.1,/index.html,1 +2026-03-08 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-03-09 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,1 +2026-03-09 00:00:00,latest,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-03-09 00:00:00,latest,/community/contact.html,1 +2026-03-09 00:00:00,latest,/contributing/release_guide.html,1 +2026-03-09 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-09 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-03-09 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-03-09 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-09 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-09 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-03-09 00:00:00,latest,/getting_started/install.html,5 +2026-03-09 00:00:00,latest,/index.html,7 +2026-03-09 00:00:00,latest,/user_guide/changelog/index.html,2 +2026-03-09 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-03-09 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-03-09 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-09 00:00:00,latest,/user_guide/changelog/v2.0.0.html,2 +2026-03-09 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-03-09 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-09 00:00:00,stable,/user_guide/documentation/variables.html,1 +2026-03-10 00:00:00,latest,/community/contact.html,2 +2026-03-10 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-10 00:00:00,latest,/contributing/release_guide.html,1 +2026-03-10 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-10 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-03-10 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-10 00:00:00,v2.0.1,/example_notebooks/IS2_data_variables.html,1 +2026-03-10 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-10 00:00:00,latest,/getting_started/install.html,2 +2026-03-10 00:00:00,latest,/index.html,7 +2026-03-11 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-03-11 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-03-11 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-03-11 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-11 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-03-11 00:00:00,development,/example_notebooks/QUEST_argo_data_access.html,3 +2026-03-11 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,3 +2026-03-11 00:00:00,latest,/getting_started/install.html,3 +2026-03-11 00:00:00,development,/index.html,1 +2026-03-11 00:00:00,latest,/index.html,7 +2026-03-11 00:00:00,development,/tracking/citations.html,1 +2026-03-11 00:00:00,latest,/tracking/citations.html,8 +2026-03-11 00:00:00,development,/tracking/downloads.html,5 +2026-03-11 00:00:00,latest,/tracking/downloads.html,6 +2026-03-11 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-11 00:00:00,latest,/user_guide/changelog/v1.3.0.html,2 +2026-03-11 00:00:00,stable,/user_guide/changelog/v1.3.0.html,1 +2026-03-11 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-03-11 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-03-11 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.GenQuery.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.cycles.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.dates.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,2 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.html,2 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.latest_version.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,3 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.product.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-03-12 00:00:00,stable,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.spatial.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.tracks.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Quest.download_all.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Quest.save_all.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Quest.search_all.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Read.filelist.html,1 +2026-03-12 00:00:00,v2.0.1,/_icepyx/icepyx.Read.filelist.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Read.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Read.product.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.append.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.avail.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.path.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.remove.html,1 +2026-03-12 00:00:00,latest,/_icepyx/icepyx.Variables.version.html,1 +2026-03-12 00:00:00,latest,/community/resources.html,1 +2026-03-12 00:00:00,latest,/contributing/attribution_link.html,2 +2026-03-12 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-03-12 00:00:00,latest,/contributing/contribution_guidelines.html,2 +2026-03-12 00:00:00,v2.0.0,/contributing/contribution_guidelines.html,1 +2026-03-12 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-12 00:00:00,v2.0.0,/contributing/contributors_link.html,1 +2026-03-12 00:00:00,latest,/contributing/development_plan.html,1 +2026-03-12 00:00:00,latest,/contributing/how_to_contribute.html,2 +2026-03-12 00:00:00,latest,/contributing/icepyx_internals.html,2 +2026-03-12 00:00:00,v2.0.0,/contributing/icepyx_internals.html,1 +2026-03-12 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-12 00:00:00,latest,/contributing/release_guide.html,2 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-03-12 00:00:00,v2.0.0,/example_notebooks/IS2_data_access.html,1 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,5 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-12 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-03-12 00:00:00,development,/example_notebooks/QUEST_argo_data_access.html,2 +2026-03-12 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,3 +2026-03-12 00:00:00,latest,/getting_started/citation_link.html,2 +2026-03-12 00:00:00,latest,/getting_started/install.html,2 +2026-03-12 00:00:00,latest,/getting_started/origin_purpose.html,3 +2026-03-12 00:00:00,latest,/index.html,12 +2026-03-12 00:00:00,latest,/tracking/citations.html,6 +2026-03-12 00:00:00,development,/tracking/downloads.html,2 +2026-03-12 00:00:00,latest,/tracking/downloads.html,4 +2026-03-12 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.2-alpha.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.3.1.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.3.2.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.3.3.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.3.4.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.4.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.6.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.7.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.8.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v0.8.1.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v1.2.0.html,2 +2026-03-12 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-03-12 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-03-12 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-03-13 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-03-13 00:00:00,stable,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-03-13 00:00:00,latest,/community/resources.html,1 +2026-03-13 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-13 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-03-13 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-13 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-13 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-13 00:00:00,latest,/getting_started/install.html,3 +2026-03-13 00:00:00,latest,/index.html,7 +2026-03-13 00:00:00,latest,/tracking/citations.html,1 +2026-03-13 00:00:00,development,/user_guide/documentation/components.html,1 +2026-03-14 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,1 +2026-03-14 00:00:00,v2.0.0,/contributing/development_plan.html,1 +2026-03-14 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-03-14 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-14 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-14 00:00:00,latest,/index.html,4 +2026-03-14 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-03-14 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-03-15 00:00:00,latest,/contributing/release_guide.html,2 +2026-03-15 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-03-15 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-15 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-15 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-15 00:00:00,latest,/getting_started/install.html,1 +2026-03-15 00:00:00,latest,/index.html,2 +2026-03-15 00:00:00,latest,/tracking/downloads.html,2 +2026-03-15 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-16 00:00:00,latest,/_icepyx/icepyx.GenQuery.html,1 +2026-03-16 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-03-16 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,1 +2026-03-16 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-03-16 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-16 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-03-16 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-03-16 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-16 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-16 00:00:00,development,/example_notebooks/IS2_data_visualization.html,1 +2026-03-16 00:00:00,latest,/getting_started/install.html,1 +2026-03-16 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-16 00:00:00,latest,/index.html,10 +2026-03-16 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-16 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-16 00:00:00,v2.0.0,/user_guide/changelog/v2.0.0.html,1 +2026-03-16 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-03-16 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-17 00:00:00,latest,/community/resources.html,3 +2026-03-17 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-03-17 00:00:00,latest,/contributing/attribution_link.html,1 +2026-03-17 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-17 00:00:00,latest,/example_notebooks/IS2_data_access.html,6 +2026-03-17 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-17 00:00:00,latest,/getting_started/install.html,5 +2026-03-17 00:00:00,v2.0.2,/getting_started/install.html,1 +2026-03-17 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-17 00:00:00,latest,/index.html,11 +2026-03-17 00:00:00,stable,/index.html,1 +2026-03-17 00:00:00,v2.0.2,/index.html,2 +2026-03-17 00:00:00,latest,/tracking/citations.html,1 +2026-03-17 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-17 00:00:00,latest,/user_guide/changelog/v0.8.1.html,1 +2026-03-17 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-03-17 00:00:00,stable,/user_guide/changelog/v2.0.1.html,1 +2026-03-17 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-03-17 00:00:00,latest,/user_guide/documentation/icepyx.html,2 +2026-03-17 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-03-18 00:00:00,stable,/_icepyx/icepyx.Query.product_version.html,1 +2026-03-18 00:00:00,latest,/_icepyx/icepyx.Quest.html,1 +2026-03-18 00:00:00,latest,/community/contact.html,1 +2026-03-18 00:00:00,latest,/community/resources.html,1 +2026-03-18 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-18 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-18 00:00:00,latest,/example_notebooks/IS2_data_access.html,5 +2026-03-18 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-18 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-18 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,4 +2026-03-18 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-18 00:00:00,latest,/getting_started/install.html,7 +2026-03-18 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-18 00:00:00,latest,/index.html,6 +2026-03-18 00:00:00,latest,/user_guide/changelog/index.html,2 +2026-03-18 00:00:00,latest,/user_guide/changelog/v0.4.0.html,1 +2026-03-18 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-18 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-03-18 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-18 00:00:00,stable,/user_guide/documentation/types.html,1 +2026-03-19 00:00:00,stable,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-03-19 00:00:00,v2.0.0,/_icepyx/icepyx.Query.cycles.html,1 +2026-03-19 00:00:00,v2.0.1,/_icepyx/icepyx.Query.latest_version.html,1 +2026-03-19 00:00:00,stable,/_icepyx/icepyx.Query.product.html,1 +2026-03-19 00:00:00,v2.0.0,/_icepyx/icepyx.Query.spatial.html,1 +2026-03-19 00:00:00,v2.0.0,/_icepyx/icepyx.Read.load.html,1 +2026-03-19 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.html,1 +2026-03-19 00:00:00,latest,/contributing/contributors_link.html,1 +2026-03-19 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-03-19 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-19 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-19 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-19 00:00:00,v2.0.1,/getting_started/citation_link.html,1 +2026-03-19 00:00:00,latest,/getting_started/install.html,5 +2026-03-19 00:00:00,latest,/index.html,7 +2026-03-19 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_granules.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-03-19 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-03-20 00:00:00,stable,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-03-20 00:00:00,v2.0.0,/_icepyx/icepyx.Query.granules.html,1 +2026-03-20 00:00:00,v2.0.1,/_icepyx/icepyx.Query.order_vars.html,1 +2026-03-20 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-03-20 00:00:00,bib,/community/resources.html,1 +2026-03-20 00:00:00,v2.0.1,/contributing/contribution_guidelines.html,1 +2026-03-20 00:00:00,development,/contributing/contributors_link.html,1 +2026-03-20 00:00:00,v2.0.0,/example_notebooks/IS2_data_access.html,1 +2026-03-20 00:00:00,development,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-20 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-20 00:00:00,v2.0.0,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-20 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-20 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-20 00:00:00,latest,/getting_started/install.html,2 +2026-03-20 00:00:00,latest,/index.html,4 +2026-03-20 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-03-20 00:00:00,stable,/user_guide/changelog/v0.3.3.html,1 +2026-03-20 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-03-20 00:00:00,stable,/user_guide/changelog/v2.0.0.html,1 +2026-03-21 00:00:00,development,/_icepyx/icepyx.Read.load.html,1 +2026-03-21 00:00:00,latest,/community/resources.html,1 +2026-03-21 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-03-21 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-03-21 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-03-21 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-21 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-21 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-21 00:00:00,v2.0.0,/getting_started/citation_link.html,1 +2026-03-21 00:00:00,latest,/getting_started/install.html,1 +2026-03-21 00:00:00,latest,/index.html,4 +2026-03-21 00:00:00,v2.0.2,/user_guide/changelog/v0.1-alpha.html,1 +2026-03-21 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-03-21 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-21 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-03-21 00:00:00,v2.0.1,/user_guide/documentation/read.html,1 +2026-03-22 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-03-22 00:00:00,latest,/community/resources.html,1 +2026-03-22 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-22 00:00:00,latest,/contributing/contributors_link.html,1 +2026-03-22 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-03-22 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-22 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-03-22 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-22 00:00:00,latest,/getting_started/install.html,1 +2026-03-22 00:00:00,latest,/index.html,4 +2026-03-23 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-03-23 00:00:00,bib,/community/contact.html,1 +2026-03-23 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-03-23 00:00:00,latest,/contributing/attribution_link.html,1 +2026-03-23 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-03-23 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-03-23 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-23 00:00:00,v2.0.2,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-23 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-23 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-23 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-23 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-23 00:00:00,bib,/getting_started/citation_link.html,1 +2026-03-23 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-23 00:00:00,latest,/getting_started/install.html,7 +2026-03-23 00:00:00,bib,/getting_started/origin_purpose.html,1 +2026-03-23 00:00:00,latest,/index.html,3 +2026-03-23 00:00:00,latest,/tracking/citations.html,1 +2026-03-23 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-03-23 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-03-24 00:00:00,development,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-03-24 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-24 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-03-24 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-03-24 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-24 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-24 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-24 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-03-24 00:00:00,latest,/getting_started/install.html,1 +2026-03-24 00:00:00,development,/index.html,2 +2026-03-24 00:00:00,latest,/index.html,7 +2026-03-25 00:00:00,stable,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-03-25 00:00:00,development,/_icepyx/icepyx.Query.dates.html,1 +2026-03-25 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-03-25 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-03-25 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-03-25 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-25 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-03-25 00:00:00,stable,/getting_started/citation_link.html,1 +2026-03-25 00:00:00,latest,/getting_started/install.html,1 +2026-03-25 00:00:00,latest,/index.html,7 +2026-03-25 00:00:00,latest,/user_guide/changelog/v0.3.1.html,1 +2026-03-26 00:00:00,v2.0.0,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-03-26 00:00:00,v2.0.0,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-03-26 00:00:00,v2.0.1,/_icepyx/icepyx.Read.product.html,1 +2026-03-26 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.append.html,1 +2026-03-26 00:00:00,v2.0.1,/community/resources.html,1 +2026-03-26 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-03-26 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-03-26 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-26 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-26 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-03-26 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-03-26 00:00:00,v2.0.1,/genindex.html,1 +2026-03-26 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-26 00:00:00,latest,/getting_started/install.html,2 +2026-03-26 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-26 00:00:00,development,/index.html,1 +2026-03-26 00:00:00,latest,/index.html,5 +2026-03-26 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Query.spatial.html,1 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Read.html,3 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Read.variables.html,1 +2026-03-27 00:00:00,latest,/_icepyx/icepyx.Variables.html,2 +2026-03-27 00:00:00,v2.0.2,/community/resources.html,1 +2026-03-27 00:00:00,v2.0.2,/contributing/contribution_guidelines.html,1 +2026-03-27 00:00:00,latest,/contributing/development_plan.html,1 +2026-03-27 00:00:00,v2.0.2,/contributing/development_plan.html,1 +2026-03-27 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-03-27 00:00:00,latest,/example_notebooks/IS2_data_access.html,6 +2026-03-27 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,4 +2026-03-27 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,4 +2026-03-27 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,10 +2026-03-27 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-27 00:00:00,latest,/getting_started/install.html,2 +2026-03-27 00:00:00,v2.0.2,/getting_started/install.html,1 +2026-03-27 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-03-27 00:00:00,bib,/index.html,1 +2026-03-27 00:00:00,latest,/index.html,4 +2026-03-27 00:00:00,v2.0.2,/user_guide/changelog/index.html,1 +2026-03-27 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-03-27 00:00:00,latest,/user_guide/changelog/v0.7.0.html,1 +2026-03-27 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-03-27 00:00:00,bib,/user_guide/documentation/icepyx.html,1 +2026-03-27 00:00:00,latest,/user_guide/documentation/icepyx.html,6 +2026-03-27 00:00:00,latest,/user_guide/documentation/query.html,2 +2026-03-27 00:00:00,latest,/user_guide/documentation/read.html,5 +2026-03-27 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-03-27 00:00:00,latest,/user_guide/documentation/variables.html,5 +2026-03-28 00:00:00,latest,/_icepyx/icepyx.Query.product_version.html,1 +2026-03-28 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-03-28 00:00:00,v2.0.2,/_icepyx/icepyx.Query.temporal.html,1 +2026-03-28 00:00:00,v2.0.0,/_icepyx/icepyx.Quest.download_all.html,1 +2026-03-28 00:00:00,stable,/_icepyx/icepyx.Quest.search_all.html,1 +2026-03-28 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-03-28 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-03-28 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-03-28 00:00:00,v2.0.0,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-28 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-03-28 00:00:00,latest,/index.html,1 +2026-03-28 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-03-28 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-03-29 00:00:00,v2.0.1,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.avail.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.path.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.remove.html,1 +2026-03-29 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.version.html,1 +2026-03-29 00:00:00,bib,/community/resources.html,1 +2026-03-29 00:00:00,latest,/community/resources.html,1 +2026-03-29 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-29 00:00:00,development,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-03-29 00:00:00,v2.0.0,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-29 00:00:00,v2.0.2,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-29 00:00:00,latest,/getting_started/install.html,1 +2026-03-29 00:00:00,v2.0.2,/getting_started/origin_purpose.html,1 +2026-03-29 00:00:00,v2.0.2,/tracking/downloads.html,1 +2026-03-29 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_granules.html,1 +2026-03-29 00:00:00,latest,/user_guide/changelog/v0.3.1.html,1 +2026-03-29 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-03-29 00:00:00,v2.0.0,/user_guide/documentation/icepyx-quest.html,2 +2026-03-29 00:00:00,development,/user_guide/documentation/quest.html,1 +2026-03-30 00:00:00,latest,/_icepyx/icepyx.Query.product.html,1 +2026-03-30 00:00:00,v2.0.1,/_icepyx/icepyx.Read.variables.html,1 +2026-03-30 00:00:00,latest,/contributing/contributors_link.html,1 +2026-03-30 00:00:00,latest,/example_notebooks/IS2_data_access.html,5 +2026-03-30 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-03-30 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-03-30 00:00:00,v2.0.2,/example_notebooks/IS2_data_read-in.html,1 +2026-03-30 00:00:00,v2.0.1,/example_notebooks/QUEST_argo_data_access.html,1 +2026-03-30 00:00:00,latest,/getting_started/install.html,3 +2026-03-30 00:00:00,latest,/index.html,4 +2026-03-30 00:00:00,latest,/tracking/citations.html,1 +2026-03-30 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_summary_info.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,3 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,2 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.html,4 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,3 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,3 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Quest.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Variables.append.html,1 +2026-03-31 00:00:00,stable,/_icepyx/icepyx.Variables.append.html,2 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Variables.html,2 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Variables.path.html,1 +2026-03-31 00:00:00,latest,/_icepyx/icepyx.Variables.remove.html,1 +2026-03-31 00:00:00,bib,/community/resources.html,1 +2026-03-31 00:00:00,latest,/community/resources.html,2 +2026-03-31 00:00:00,v2.0.2,/contributing/attribution_link.html,1 +2026-03-31 00:00:00,v2.0.2,/contributing/code_of_conduct_link.html,1 +2026-03-31 00:00:00,development,/contributing/contribution_guidelines.html,1 +2026-03-31 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-03-31 00:00:00,v2.0.1,/contributing/contribution_guidelines.html,1 +2026-03-31 00:00:00,bib,/contributing/development_plan.html,1 +2026-03-31 00:00:00,v2.0.2,/contributing/how_to_contribute.html,1 +2026-03-31 00:00:00,latest,/contributing/release_guide.html,1 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_DEM_comparison_WIP.html,1 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,3 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_data_access.html,8 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_data_variables.html,3 +2026-03-31 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-03-31 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-03-31 00:00:00,latest,/genindex.html,1 +2026-03-31 00:00:00,latest,/getting_started/citation_link.html,1 +2026-03-31 00:00:00,latest,/getting_started/install.html,1 +2026-03-31 00:00:00,latest,/index.html,5 +2026-03-31 00:00:00,latest,/tracking/downloads.html,1 +2026-03-31 00:00:00,v2.0.0,/user_guide/changelog/index.html,1 +2026-03-31 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-03-31 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-03-31 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,2 +2026-03-31 00:00:00,latest,/user_guide/documentation/icepyx.html,3 +2026-03-31 00:00:00,latest,/user_guide/documentation/query.html,2 +2026-03-31 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-03-31 00:00:00,latest,/user_guide/documentation/variables.html,4 +2026-04-01 00:00:00,latest,/_icepyx/icepyx.Read.html,1 +2026-04-01 00:00:00,latest,/_icepyx/icepyx.Variables.version.html,1 +2026-04-01 00:00:00,latest,/community/resources.html,2 +2026-04-01 00:00:00,latest,/contributing/development_plan.html,3 +2026-04-01 00:00:00,latest,/contributing/icepyx_internals.html,3 +2026-04-01 00:00:00,latest,/contributing/release_guide.html,2 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_data_access.html,5 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,5 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_data_variables.html,3 +2026-04-01 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-04-01 00:00:00,latest,/getting_started/install.html,1 +2026-04-01 00:00:00,latest,/index.html,5 +2026-04-01 00:00:00,latest,/user_guide/changelog/v0.3.2.html,1 +2026-04-01 00:00:00,v2.0.0,/user_guide/changelog/v0.6.0.html,1 +2026-04-01 00:00:00,stable,/user_guide/changelog/v1.1.0.html,1 +2026-04-01 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-01 00:00:00,latest,/user_guide/documentation/read.html,2 +2026-04-01 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-04-01 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-04-02 00:00:00,stable,/_icepyx/icepyx.Query.download_granules.html,1 +2026-04-02 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-02 00:00:00,latest,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-04-02 00:00:00,stable,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-04-02 00:00:00,stable,/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-04-02 00:00:00,stable,/_icepyx/icepyx.Variables.append.html,1 +2026-04-02 00:00:00,stable,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-04-02 00:00:00,latest,/community/resources.html,1 +2026-04-02 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-04-02 00:00:00,development,/contributing/attribution_link.html,1 +2026-04-02 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-02 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-04-02 00:00:00,v2.0.0,/example_notebooks/IS2_data_read-in.html,1 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-02 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,4 +2026-04-02 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-04-02 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-02 00:00:00,latest,/index.html,4 +2026-04-02 00:00:00,stable,/index.html,1 +2026-04-02 00:00:00,stable,/user_guide/changelog/v0.1-alpha.html,1 +2026-04-02 00:00:00,stable,/user_guide/changelog/v0.5.0.html,1 +2026-04-02 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-02 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-04-02 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-02 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-04-02 00:00:00,stable,/user_guide/documentation/read.html,1 +2026-04-03 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-04-03 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,1 +2026-04-03 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-03 00:00:00,latest,/_icepyx/icepyx.Read.html,1 +2026-04-03 00:00:00,latest,/contributing/development_plan.html,2 +2026-04-03 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-03 00:00:00,latest,/contributing/release_guide.html,1 +2026-04-03 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-04-03 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-04-03 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-03 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-04-03 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-04-03 00:00:00,latest,/getting_started/install.html,1 +2026-04-03 00:00:00,latest,/getting_started/origin_purpose.html,2 +2026-04-03 00:00:00,latest,/index.html,6 +2026-04-03 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-03 00:00:00,latest,/user_guide/documentation/icepyx.html,3 +2026-04-03 00:00:00,latest,/user_guide/documentation/read.html,2 +2026-04-04 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-04 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-04 00:00:00,v2.0.2,/example_notebooks/IS2_data_read-in.html,1 +2026-04-04 00:00:00,latest,/example_notebooks/IS2_data_variables.html,2 +2026-04-04 00:00:00,v2.0.2,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-04 00:00:00,latest,/index.html,1 +2026-04-04 00:00:00,stable,/user_guide/documentation/components.html,1 +2026-04-05 00:00:00,latest,/community/contact.html,1 +2026-04-05 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-05 00:00:00,latest,/getting_started/citation_link.html,1 +2026-04-05 00:00:00,latest,/getting_started/install.html,2 +2026-04-05 00:00:00,latest,/index.html,1 +2026-04-06 00:00:00,bib,/contributing/attribution_link.html,1 +2026-04-06 00:00:00,bib,/contributing/development_plan.html,1 +2026-04-06 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_data_access.html,5 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_data_variables.html,2 +2026-04-06 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-04-06 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-06 00:00:00,stable,/getting_started/citation_link.html,1 +2026-04-06 00:00:00,latest,/getting_started/install.html,3 +2026-04-06 00:00:00,latest,/index.html,3 +2026-04-06 00:00:00,latest,/user_guide/changelog/v1.2.0.html,1 +2026-04-06 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-04-06 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-06 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-06 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-04-06 00:00:00,latest,/user_guide/documentation/read.html,2 +2026-04-06 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-04-07 00:00:00,v2.0.1,/_icepyx/icepyx.GenQuery.html,1 +2026-04-07 00:00:00,stable,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-07 00:00:00,stable,/_icepyx/icepyx.Query.cycles.html,1 +2026-04-07 00:00:00,stable,/_icepyx/icepyx.Query.html,1 +2026-04-07 00:00:00,v2.0.1,/_icepyx/icepyx.Query.html,1 +2026-04-07 00:00:00,development,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-07 00:00:00,stable,/_icepyx/icepyx.Read.html,1 +2026-04-07 00:00:00,v2.0.1,/_icepyx/icepyx.Read.html,1 +2026-04-07 00:00:00,stable,/community/contact.html,1 +2026-04-07 00:00:00,latest,/community/resources.html,1 +2026-04-07 00:00:00,stable,/community/resources.html,1 +2026-04-07 00:00:00,development,/contributing/how_to_contribute.html,1 +2026-04-07 00:00:00,latest,/contributing/icepyx_internals.html,2 +2026-04-07 00:00:00,latest,/contributing/release_guide.html,1 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_data_access.html,10 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,11 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_data_variables.html,6 +2026-04-07 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-07 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,4 +2026-04-07 00:00:00,latest,/getting_started/citation_link.html,3 +2026-04-07 00:00:00,latest,/getting_started/install.html,6 +2026-04-07 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-07 00:00:00,latest,/index.html,10 +2026-04-07 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-04-07 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-07 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-07 00:00:00,v2.0.1,/user_guide/documentation/query.html,1 +2026-04-07 00:00:00,stable,/user_guide/documentation/read.html,1 +2026-04-08 00:00:00,latest,/contributing/attribution_link.html,1 +2026-04-08 00:00:00,v2.0.0,/contributing/development_plan.html,1 +2026-04-08 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-04-08 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-08 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-04-08 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-08 00:00:00,latest,/getting_started/install.html,4 +2026-04-08 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-08 00:00:00,latest,/index.html,4 +2026-04-08 00:00:00,latest,/tracking/citations.html,4 +2026-04-08 00:00:00,latest,/tracking/downloads.html,1 +2026-04-08 00:00:00,latest,/user_guide/changelog/index.html,2 +2026-04-08 00:00:00,v2.0.0,/user_guide/changelog/v0.3.3.html,1 +2026-04-08 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-04-08 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-04-08 00:00:00,latest,/user_guide/documentation/icepyx.html,3 +2026-04-09 00:00:00,v2.0.1,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-09 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-04-09 00:00:00,latest,/contributing/contributors_link.html,1 +2026-04-09 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-09 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-09 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,4 +2026-04-09 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-04-09 00:00:00,latest,/example_notebooks/IS2_data_variables.html,4 +2026-04-09 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-09 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-09 00:00:00,latest,/index.html,9 +2026-04-09 00:00:00,latest,/tracking/downloads.html,1 +2026-04-09 00:00:00,latest,/user_guide/changelog/v2.0.1.html,2 +2026-04-09 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-09 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-10 00:00:00,v2.0.0,/_icepyx/icepyx.GenQuery.html,1 +2026-04-10 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-04-10 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,1 +2026-04-10 00:00:00,stable,/_icepyx/icepyx.Variables.append.html,1 +2026-04-10 00:00:00,bib,/community/resources.html,2 +2026-04-10 00:00:00,latest,/community/resources.html,2 +2026-04-10 00:00:00,v2.0.1,/contributing/contributors_link.html,1 +2026-04-10 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-04-10 00:00:00,latest,/example_notebooks/IS2_data_access.html,11 +2026-04-10 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,9 +2026-04-10 00:00:00,development,/example_notebooks/IS2_data_read-in.html,1 +2026-04-10 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-04-10 00:00:00,latest,/example_notebooks/IS2_data_variables.html,7 +2026-04-10 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-04-10 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-04-10 00:00:00,latest,/getting_started/install.html,3 +2026-04-10 00:00:00,latest,/index.html,14 +2026-04-10 00:00:00,latest,/tracking/citations.html,1 +2026-04-10 00:00:00,v2.0.0,/user_guide/changelog/v0.3.4.html,1 +2026-04-10 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-04-10 00:00:00,main,/user_guide/changelog/v1.0.0.html,1 +2026-04-10 00:00:00,latest,/user_guide/changelog/v1.3.0.html,2 +2026-04-10 00:00:00,latest,/user_guide/documentation/icepyx.html,2 +2026-04-11 00:00:00,development,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-11 00:00:00,stable,/_icepyx/icepyx.Query.start_time.html,1 +2026-04-11 00:00:00,stable,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-04-11 00:00:00,latest,/_icepyx/icepyx.Quest.search_all.html,1 +2026-04-11 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-04-11 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-11 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-11 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-04-11 00:00:00,latest,/getting_started/install.html,1 +2026-04-11 00:00:00,latest,/index.html,2 +2026-04-11 00:00:00,latest,/tracking/citations.html,6 +2026-04-11 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.file_vars.html,1 +2026-04-11 00:00:00,stable,/user_guide/changelog/v0.3.4.html,1 +2026-04-11 00:00:00,latest,/user_guide/changelog/v0.4.0.html,1 +2026-04-11 00:00:00,v2.0.0,/user_guide/changelog/v0.6.2.html,1 +2026-04-11 00:00:00,v2.0.1,/user_guide/changelog/v0.6.2.html,1 +2026-04-11 00:00:00,v2.0.0,/user_guide/changelog/v0.8.1.html,1 +2026-04-11 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-04-12 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-04-12 00:00:00,stable,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-04-12 00:00:00,stable,/_icepyx/icepyx.Variables.path.html,1 +2026-04-12 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-12 00:00:00,development,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-12 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-12 00:00:00,latest,/index.html,1 +2026-04-12 00:00:00,latest,/tracking/downloads.html,1 +2026-04-12 00:00:00,development,/user_guide/changelog/v0.3.4.html,1 +2026-04-13 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-04-13 00:00:00,stable,/_icepyx/icepyx.Query.latest_version.html,1 +2026-04-13 00:00:00,development,/_icepyx/icepyx.Query.spatial.html,1 +2026-04-13 00:00:00,stable,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-04-13 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-04-13 00:00:00,v2.0.1,/contributing/release_guide.html,1 +2026-04-13 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-13 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-13 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,4 +2026-04-13 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-13 00:00:00,latest,/getting_started/install.html,1 +2026-04-13 00:00:00,latest,/index.html,7 +2026-04-13 00:00:00,latest,/tracking/citations.html,1 +2026-04-13 00:00:00,stable,/user_guide/changelog/v0.2-alpha.html,1 +2026-04-13 00:00:00,stable,/user_guide/changelog/v0.5.0.html,1 +2026-04-13 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-04-13 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-13 00:00:00,latest,/user_guide/documentation/icepyx.html,4 +2026-04-13 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-04-14 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-14 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-14 00:00:00,bib,/community/resources.html,1 +2026-04-14 00:00:00,v2.0.1,/community/resources.html,1 +2026-04-14 00:00:00,v2.0.0,/contributing/contributors_link.html,1 +2026-04-14 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-04-14 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-04-14 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-14 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-14 00:00:00,latest,/getting_started/install.html,3 +2026-04-14 00:00:00,latest,/index.html,9 +2026-04-14 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.cycles.html,1 +2026-04-14 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.subsetparams.html,1 +2026-04-14 00:00:00,development,/user_guide/changelog/v0.4.0.html,1 +2026-04-14 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-04-14 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-14 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.GenQuery.html,2 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-15 00:00:00,development,/_icepyx/icepyx.Query.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.html,3 +2026-04-15 00:00:00,v2.0.0,/_icepyx/icepyx.Query.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,1 +2026-04-15 00:00:00,stable,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-04-15 00:00:00,stable,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Query.tracks.html,1 +2026-04-15 00:00:00,latest,/_icepyx/icepyx.Quest.html,1 +2026-04-15 00:00:00,bib,/community/resources.html,1 +2026-04-15 00:00:00,latest,/community/resources.html,1 +2026-04-15 00:00:00,v2.0.0,/community/resources.html,1 +2026-04-15 00:00:00,v2.0.0,/contributing/attribution_link.html,1 +2026-04-15 00:00:00,bib,/contributing/contribution_guidelines.html,1 +2026-04-15 00:00:00,latest,/contributing/release_guide.html,1 +2026-04-15 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-15 00:00:00,stable,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-15 00:00:00,latest,/example_notebooks/IS2_data_access.html,9 +2026-04-15 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-04-15 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-04-15 00:00:00,stable,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-15 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,4 +2026-04-15 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-04-15 00:00:00,stable,/example_notebooks/IS2_data_variables.html,1 +2026-04-15 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,3 +2026-04-15 00:00:00,bib,/getting_started/example_link.html,3 +2026-04-15 00:00:00,latest,/getting_started/install.html,2 +2026-04-15 00:00:00,development,/index.html,2 +2026-04-15 00:00:00,latest,/index.html,10 +2026-04-15 00:00:00,stable,/index.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.cycles.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_version.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dates.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.end_time.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.orbit_number.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.reqparams.html,1 +2026-04-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.tracks.html,1 +2026-04-15 00:00:00,stable,/user_guide/changelog/v0.3.1.html,1 +2026-04-15 00:00:00,development,/user_guide/changelog/v0.3.2.html,1 +2026-04-15 00:00:00,development,/user_guide/changelog/v0.8.1.html,1 +2026-04-15 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-15 00:00:00,latest,/user_guide/documentation/icepyx.html,3 +2026-04-15 00:00:00,latest,/user_guide/documentation/query.html,5 +2026-04-15 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-04-16 00:00:00,v2.0.0,/_icepyx/icepyx.GenQuery.html,1 +2026-04-16 00:00:00,latest,/_icepyx/icepyx.Query.spatial_extent.html,2 +2026-04-16 00:00:00,development,/_icepyx/icepyx.Read.variables.html,1 +2026-04-16 00:00:00,latest,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-04-16 00:00:00,bib,/community/resources.html,1 +2026-04-16 00:00:00,v2.0.0,/community/resources.html,1 +2026-04-16 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-04-16 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-04-16 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,4 +2026-04-16 00:00:00,latest,/example_notebooks/IS2_data_access.html,6 +2026-04-16 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-04-16 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-16 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-16 00:00:00,latest,/getting_started/install.html,1 +2026-04-16 00:00:00,latest,/index.html,5 +2026-04-16 00:00:00,v2.0.1,/search.html,1 +2026-04-16 00:00:00,bib,/tracking/tracking.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.granules.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.orbit_number.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.start_time.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.subsetparams.html,1 +2026-04-16 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.tracks.html,1 +2026-04-16 00:00:00,bib,/user_guide/documentation/components.html,1 +2026-04-16 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-04-16 00:00:00,latest,/user_guide/documentation/icepyx.html,2 +2026-04-16 00:00:00,v2.0.0,/user_guide/documentation/icepyx.html,1 +2026-04-16 00:00:00,latest,/user_guide/documentation/query.html,3 +2026-04-16 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.GenQuery.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-17 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.Query.spatial.html,1 +2026-04-17 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-17 00:00:00,stable,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-04-17 00:00:00,latest,/contributing/development_plan.html,1 +2026-04-17 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-04-17 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-04-17 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-17 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,5 +2026-04-17 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,2 +2026-04-17 00:00:00,bib,/getting_started/example_link.html,1 +2026-04-17 00:00:00,latest,/getting_started/install.html,1 +2026-04-17 00:00:00,latest,/index.html,5 +2026-04-17 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_all_info.html,1 +2026-04-17 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.file_vars.html,1 +2026-04-17 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_granules.html,1 +2026-04-17 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-17 00:00:00,stable,/user_guide/changelog/v0.3.4.html,1 +2026-04-17 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-04-17 00:00:00,stable,/user_guide/changelog/v1.3.0.html,1 +2026-04-17 00:00:00,bib,/user_guide/documentation/query.html,1 +2026-04-18 00:00:00,v2.0.0,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.cycles.html,2 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.dates.html,1 +2026-04-18 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.product.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.start_time.html,1 +2026-04-18 00:00:00,stable,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-18 00:00:00,latest,/community/resources.html,1 +2026-04-18 00:00:00,latest,/contributing/attribution_link.html,1 +2026-04-18 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-04-18 00:00:00,latest,/contributing/contributors_link.html,1 +2026-04-18 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-18 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-18 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-04-18 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-18 00:00:00,bib,/getting_started/citation_link.html,1 +2026-04-18 00:00:00,latest,/getting_started/install.html,2 +2026-04-18 00:00:00,latest,/index.html,3 +2026-04-18 00:00:00,latest,/tracking/citations.html,1 +2026-04-18 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.cycles.html,1 +2026-04-18 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset.html,1 +2026-04-18 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-04-18 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-04-18 00:00:00,latest,/user_guide/changelog/v2.0.0.html,2 +2026-04-18 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-04-18 00:00:00,development,/user_guide/documentation/icepyx.html,1 +2026-04-18 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-19 00:00:00,stable,/_icepyx/icepyx.Query.dates.html,1 +2026-04-19 00:00:00,stable,/_icepyx/icepyx.Query.html,1 +2026-04-19 00:00:00,stable,/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-19 00:00:00,stable,/_icepyx/icepyx.Query.product_version.html,1 +2026-04-19 00:00:00,v2.0.2,/_icepyx/icepyx.Query.tracks.html,1 +2026-04-19 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-19 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-19 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-19 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-04-19 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-19 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-04-19 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-04-19 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-19 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-04-19 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-20 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-20 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,1 +2026-04-20 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-20 00:00:00,bib,/community/resources.html,3 +2026-04-20 00:00:00,development,/community/resources.html,1 +2026-04-20 00:00:00,stable,/contributing/attribution_link.html,1 +2026-04-20 00:00:00,latest,/contributing/release_guide.html,1 +2026-04-20 00:00:00,latest,/example_notebooks/IS2_data_access.html,7 +2026-04-20 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-20 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-04-20 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-20 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-20 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-20 00:00:00,latest,/getting_started/install.html,2 +2026-04-20 00:00:00,latest,/index.html,4 +2026-04-20 00:00:00,stable,/tracking/citations.html,1 +2026-04-20 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-04-20 00:00:00,stable,/user_guide/changelog/v0.2-alpha.html,1 +2026-04-20 00:00:00,latest,/user_guide/changelog/v0.5.0.html,1 +2026-04-20 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-04-21 00:00:00,latest,/_icepyx/icepyx.GenQuery.html,1 +2026-04-21 00:00:00,development,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-21 00:00:00,v2.0.2,/_icepyx/icepyx.Query.spatial.html,1 +2026-04-21 00:00:00,stable,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-04-21 00:00:00,v2.0.1,/_icepyx/icepyx.Variables.html,1 +2026-04-21 00:00:00,v2.0.2,/_icepyx/icepyx.Variables.remove.html,1 +2026-04-21 00:00:00,latest,/contributing/attribution_link.html,1 +2026-04-21 00:00:00,latest,/contributing/development_plan.html,2 +2026-04-21 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-04-21 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-04-21 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-21 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-21 00:00:00,latest,/getting_started/install.html,1 +2026-04-21 00:00:00,latest,/getting_started/origin_purpose.html,2 +2026-04-21 00:00:00,latest,/index.html,6 +2026-04-21 00:00:00,latest,/tracking/citations.html,4 +2026-04-21 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-21 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-04-21 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-04-21 00:00:00,stable,/user_guide/changelog/v0.8.0.html,1 +2026-04-21 00:00:00,v2.0.2,/user_guide/changelog/v2.0.2.html,1 +2026-04-21 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-21 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-21 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-21 00:00:00,v2.0.1,/user_guide/documentation/types.html,1 +2026-04-22 00:00:00,latest,/_icepyx/icepyx.Query.CMRparams.html,2 +2026-04-22 00:00:00,stable,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-04-22 00:00:00,stable,/_icepyx/icepyx.Variables.remove.html,1 +2026-04-22 00:00:00,stable,/_icepyx/icepyx.Variables.version.html,1 +2026-04-22 00:00:00,latest,/community/contact.html,1 +2026-04-22 00:00:00,latest,/community/resources.html,1 +2026-04-22 00:00:00,v2.0.0,/community/resources.html,1 +2026-04-22 00:00:00,bib,/contributing/attribution_link.html,1 +2026-04-22 00:00:00,stable,/contributing/quest-available-datasets.html,1 +2026-04-22 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-04-22 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-22 00:00:00,bib,/index.html,1 +2026-04-22 00:00:00,latest,/index.html,4 +2026-04-22 00:00:00,latest,/tracking/citations.html,1 +2026-04-22 00:00:00,stable,/user_guide/changelog/v0.3.1.html,1 +2026-04-22 00:00:00,v2.0.2,/user_guide/changelog/v0.3.3.html,1 +2026-04-22 00:00:00,development,/user_guide/changelog/v0.4.0.html,1 +2026-04-22 00:00:00,development,/user_guide/changelog/v0.6.0.html,1 +2026-04-22 00:00:00,stable,/user_guide/changelog/v0.6.0.html,1 +2026-04-22 00:00:00,development,/user_guide/changelog/v0.8.1.html,1 +2026-04-22 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-04-22 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-04-23 00:00:00,v2.0.1,/_icepyx/icepyx.GenQuery.html,1 +2026-04-23 00:00:00,v2.0.2,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-23 00:00:00,stable,/_icepyx/icepyx.Query.latest_version.html,1 +2026-04-23 00:00:00,development,/_icepyx/icepyx.Query.spatial.html,1 +2026-04-23 00:00:00,latest,/_icepyx/icepyx.Query.spatial_extent.html,2 +2026-04-23 00:00:00,stable,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-04-23 00:00:00,v2.0.0,/_icepyx/icepyx.Quest.html,1 +2026-04-23 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-04-23 00:00:00,latest,/_icepyx/icepyx.Variables.append.html,1 +2026-04-23 00:00:00,stable,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-04-23 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.remove.html,1 +2026-04-23 00:00:00,latest,/contributing/contributors_link.html,1 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_data_access.html,7 +2026-04-23 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,3 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-23 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-04-23 00:00:00,latest,/getting_started/citation_link.html,2 +2026-04-23 00:00:00,latest,/getting_started/install.html,1 +2026-04-23 00:00:00,stable,/getting_started/install.html,1 +2026-04-23 00:00:00,development,/getting_started/origin_purpose.html,1 +2026-04-23 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-23 00:00:00,latest,/index.html,2 +2026-04-23 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_all_info.html,1 +2026-04-23 00:00:00,bib,/user_guide/changelog/v0.3.1.html,1 +2026-04-23 00:00:00,development,/user_guide/changelog/v0.3.2.html,1 +2026-04-23 00:00:00,v2.0.2,/user_guide/changelog/v0.3.2.html,1 +2026-04-23 00:00:00,development,/user_guide/changelog/v0.3.4.html,1 +2026-04-23 00:00:00,development,/user_guide/changelog/v0.4.1.html,1 +2026-04-23 00:00:00,stable,/user_guide/changelog/v0.8.1.html,1 +2026-04-23 00:00:00,stable,/user_guide/changelog/v2.0.0.html,1 +2026-04-23 00:00:00,stable,/user_guide/changelog/v2.0.1.html,1 +2026-04-23 00:00:00,bib,/user_guide/documentation/components.html,1 +2026-04-24 00:00:00,latest,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-04-24 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-24 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-24 00:00:00,stable,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-04-24 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-24 00:00:00,bib,/getting_started/install.html,1 +2026-04-24 00:00:00,latest,/getting_started/install.html,1 +2026-04-24 00:00:00,latest,/index.html,8 +2026-04-24 00:00:00,latest,/tracking/citations.html,1 +2026-04-24 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.file_vars.html,1 +2026-04-24 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-04-24 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-04-24 00:00:00,development,/user_guide/changelog/v0.8.1.html,1 +2026-04-24 00:00:00,latest,/user_guide/documentation/icepyx.html,2 +2026-04-24 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-25 00:00:00,stable,/_icepyx/icepyx.Query.latest_version.html,1 +2026-04-25 00:00:00,development,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-25 00:00:00,latest,/_icepyx/icepyx.Variables.append.html,1 +2026-04-25 00:00:00,bib,/contributing/attribution_link.html,1 +2026-04-25 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-04-25 00:00:00,latest,/contributing/contributors_link.html,1 +2026-04-25 00:00:00,stable,/contributing/contributors_link.html,1 +2026-04-25 00:00:00,bib,/contributing/development_plan.html,1 +2026-04-25 00:00:00,stable,/contributing/how_to_contribute.html,1 +2026-04-25 00:00:00,stable,/contributing/icepyx_internals.html,1 +2026-04-25 00:00:00,stable,/contributing/quest-available-datasets.html,1 +2026-04-25 00:00:00,latest,/contributing/release_guide.html,1 +2026-04-25 00:00:00,stable,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-25 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-25 00:00:00,stable,/example_notebooks/QUEST_argo_data_access.html,1 +2026-04-25 00:00:00,latest,/getting_started/citation_link.html,1 +2026-04-25 00:00:00,stable,/getting_started/citation_link.html,1 +2026-04-25 00:00:00,latest,/getting_started/install.html,1 +2026-04-25 00:00:00,stable,/getting_started/install.html,1 +2026-04-25 00:00:00,latest,/index.html,6 +2026-04-25 00:00:00,stable,/tracking/citations.html,1 +2026-04-25 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_all_info.html,1 +2026-04-25 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.earthdata_login.html,1 +2026-04-25 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.latest_version.html,1 +2026-04-25 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-04-25 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-04-25 00:00:00,bib,/user_guide/changelog/index.html,1 +2026-04-25 00:00:00,stable,/user_guide/changelog/index.html,1 +2026-04-25 00:00:00,development,/user_guide/changelog/v0.3.4.html,1 +2026-04-25 00:00:00,development,/user_guide/changelog/v0.4.0.html,1 +2026-04-25 00:00:00,development,/user_guide/changelog/v0.4.1.html,1 +2026-04-25 00:00:00,latest,/user_guide/changelog/v0.5.0.html,1 +2026-04-25 00:00:00,v2.0.0,/user_guide/changelog/v0.6.3.html,1 +2026-04-25 00:00:00,stable,/user_guide/changelog/v0.7.0.html,1 +2026-04-25 00:00:00,stable,/user_guide/documentation/icepyx-quest.html,1 +2026-04-26 00:00:00,v2.0.0,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-04-26 00:00:00,v2.0.2,/_icepyx/icepyx.Query.order_granules.html,1 +2026-04-26 00:00:00,latest,/_icepyx/icepyx.Variables.avail.html,1 +2026-04-26 00:00:00,v2.0.0,/community/resources/IS2_software.html,2 +2026-04-26 00:00:00,latest,/contributing/attribution_link.html,1 +2026-04-26 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-04-26 00:00:00,stable,/example_notebooks/IS2_cloud_data_access.html,1 +2026-04-26 00:00:00,development,/example_notebooks/IS2_data_read-in.html,1 +2026-04-26 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-26 00:00:00,latest,/getting_started/install.html,1 +2026-04-26 00:00:00,latest,/index.html,4 +2026-04-26 00:00:00,v2.0.2,/search.html,1 +2026-04-26 00:00:00,latest,/user_guide/changelog/v0.3.2.html,1 +2026-04-26 00:00:00,stable,/user_guide/changelog/v0.3.4.html,1 +2026-04-26 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-04-26 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-04-26 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-27 00:00:00,stable,/_icepyx/icepyx.Query.dates.html,1 +2026-04-27 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-27 00:00:00,stable,/_icepyx/icepyx.Query.order_vars.html,1 +2026-04-27 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-04-27 00:00:00,stable,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-04-27 00:00:00,v2.0.2,/_icepyx/icepyx.Quest.download_all.html,1 +2026-04-27 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-04-27 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-04-27 00:00:00,bib,/getting_started/example_link.html,1 +2026-04-27 00:00:00,latest,/getting_started/install.html,1 +2026-04-27 00:00:00,latest,/index.html,2 +2026-04-27 00:00:00,latest,/tracking/citations.html,1 +2026-04-27 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.subsetparams.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-04-27 00:00:00,bib,/user_guide/changelog/v0.2-alpha.html,1 +2026-04-27 00:00:00,stable,/user_guide/changelog/v0.2-alpha.html,1 +2026-04-27 00:00:00,development,/user_guide/changelog/v0.3.2.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v0.6.3.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v0.7.0.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-04-27 00:00:00,v2.0.2,/user_guide/changelog/v1.1.0.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v1.2.0.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-04-27 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-27 00:00:00,bib,/user_guide/documentation/components.html,1 +2026-04-28 00:00:00,stable,/_icepyx/icepyx.Query.end_time.html,1 +2026-04-28 00:00:00,stable,/_icepyx/icepyx.Query.start_time.html,1 +2026-04-28 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-04-28 00:00:00,stable,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-04-28 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-28 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-28 00:00:00,latest,/getting_started/install.html,1 +2026-04-28 00:00:00,latest,/index.html,6 +2026-04-28 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.file_vars.html,1 +2026-04-28 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-04-28 00:00:00,development,/user_guide/documentation/icepyx.html,2 +2026-04-28 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-04-29 00:00:00,stable,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-04-29 00:00:00,development,/_icepyx/icepyx.Query.spatial.html,1 +2026-04-29 00:00:00,latest,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-04-29 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-04-29 00:00:00,development,/_icepyx/icepyx.Read.variables.html,1 +2026-04-29 00:00:00,bib,/community/resources.html,1 +2026-04-29 00:00:00,stable,/contributing/quest-available-datasets.html,1 +2026-04-29 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-04-29 00:00:00,development,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-29 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-04-29 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-04-29 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-04-29 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-04-29 00:00:00,latest,/getting_started/citation_link.html,2 +2026-04-29 00:00:00,bib,/getting_started/example_link.html,1 +2026-04-29 00:00:00,latest,/getting_started/install.html,3 +2026-04-29 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-04-29 00:00:00,latest,/index.html,1 +2026-04-29 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset.html,1 +2026-04-29 00:00:00,stable,/user_guide/changelog/v0.3.1.html,1 +2026-04-29 00:00:00,main,/user_guide/changelog/v0.3.4.html,1 +2026-04-29 00:00:00,latest,/user_guide/changelog/v0.5.0.html,1 +2026-04-29 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-04-30 00:00:00,stable,/_icepyx/icepyx.Query.cycles.html,1 +2026-04-30 00:00:00,stable,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-04-30 00:00:00,stable,/_icepyx/icepyx.Variables.remove.html,1 +2026-04-30 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.remove.html,1 +2026-04-30 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-04-30 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-04-30 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-04-30 00:00:00,latest,/getting_started/install.html,1 +2026-04-30 00:00:00,latest,/index.html,6 +2026-04-30 00:00:00,development,/tracking/citations.html,1 +2026-04-30 00:00:00,latest,/tracking/citations.html,1 +2026-04-30 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-04-30 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-01 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-05-01 00:00:00,latest,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-05-01 00:00:00,latest,/_icepyx/icepyx.Variables.avail.html,1 +2026-05-01 00:00:00,latest,/_icepyx/icepyx.Variables.html,1 +2026-05-01 00:00:00,bib,/community/contact.html,1 +2026-05-01 00:00:00,latest,/community/contact.html,2 +2026-05-01 00:00:00,latest,/community/resources.html,2 +2026-05-01 00:00:00,latest,/contributing/attribution_link.html,1 +2026-05-01 00:00:00,stable,/contributing/attribution_link.html,1 +2026-05-01 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-01 00:00:00,latest,/contributing/contribution_guidelines.html,2 +2026-05-01 00:00:00,latest,/contributing/contributors_link.html,1 +2026-05-01 00:00:00,latest,/contributing/development_plan.html,1 +2026-05-01 00:00:00,latest,/contributing/how_to_contribute.html,3 +2026-05-01 00:00:00,latest,/contributing/icepyx_internals.html,2 +2026-05-01 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-01 00:00:00,latest,/contributing/release_guide.html,1 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,12 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_data_access.html,14 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,15 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,17 +2026-05-01 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_data_variables.html,40 +2026-05-01 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,11 +2026-05-01 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-05-01 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,6 +2026-05-01 00:00:00,latest,/getting_started/citation_link.html,7 +2026-05-01 00:00:00,latest,/getting_started/install.html,8 +2026-05-01 00:00:00,latest,/getting_started/origin_purpose.html,3 +2026-05-01 00:00:00,latest,/index.html,12 +2026-05-01 00:00:00,latest,/tracking/citations.html,1 +2026-05-01 00:00:00,latest,/tracking/downloads.html,1 +2026-05-01 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/index.html,26 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.3.1.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.3.2.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.3.3.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.3.4.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.4.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.4.1.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.5.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.6.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.6.3.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.7.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.8.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v0.8.1.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v1.1.0.html,1 +2026-05-01 00:00:00,stable,/user_guide/changelog/v1.1.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v1.2.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-05-01 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-05-01 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-05-01 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,3 +2026-05-01 00:00:00,latest,/user_guide/documentation/icepyx.html,4 +2026-05-01 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-05-01 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-05-01 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-05-01 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-05-01 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-05-02 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-02 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-05-02 00:00:00,latest,/_icepyx/icepyx.Variables.append.html,1 +2026-05-02 00:00:00,latest,/_icepyx/icepyx.Variables.avail.html,1 +2026-05-02 00:00:00,stable,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-05-02 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-02 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-05-02 00:00:00,stable,/example_notebooks/QUEST_argo_data_access.html,1 +2026-05-02 00:00:00,latest,/getting_started/install.html,2 +2026-05-02 00:00:00,latest,/index.html,3 +2026-05-02 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset.html,1 +2026-05-02 00:00:00,stable,/user_guide/changelog/v0.2-alpha.html,2 +2026-05-02 00:00:00,development,/user_guide/changelog/v0.3.4.html,1 +2026-05-02 00:00:00,latest,/user_guide/changelog/v0.6.0.html,1 +2026-05-02 00:00:00,latest,/user_guide/changelog/v1.0.0.html,1 +2026-05-02 00:00:00,development,/user_guide/documentation/quest.html,1 +2026-05-02 00:00:00,v2.0.2,/user_guide/documentation/quest.html,1 +2026-05-03 00:00:00,development,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-03 00:00:00,latest,/_icepyx/icepyx.Read.load.html,1 +2026-05-03 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-03 00:00:00,development,/contributing/how_to_contribute.html,1 +2026-05-03 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-03 00:00:00,latest,/index.html,1 +2026-05-03 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.cycles.html,1 +2026-05-03 00:00:00,development,/user_guide/changelog/v0.4.1.html,1 +2026-05-03 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-05-04 00:00:00,stable,/_icepyx/icepyx.Query.dates.html,1 +2026-05-04 00:00:00,latest,/_icepyx/icepyx.Query.temporal.html,1 +2026-05-04 00:00:00,latest,/_icepyx/icepyx.Query.tracks.html,1 +2026-05-04 00:00:00,stable,/_icepyx/icepyx.Variables.remove.html,1 +2026-05-04 00:00:00,latest,/community/resources.html,1 +2026-05-04 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-04 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-04 00:00:00,latest,/index.html,3 +2026-05-04 00:00:00,development,/tracking/citations.html,1 +2026-05-04 00:00:00,bib,/user_guide/changelog/index.html,1 +2026-05-04 00:00:00,bib,/user_guide/changelog/v0.1-alpha.html,1 +2026-05-04 00:00:00,stable,/user_guide/changelog/v0.3.1.html,1 +2026-05-04 00:00:00,latest,/user_guide/changelog/v0.5.0.html,1 +2026-05-04 00:00:00,v2.0.0,/user_guide/changelog/v1.1.0.html,1 +2026-05-04 00:00:00,development,/user_guide/changelog/v2.0.1.html,1 +2026-05-04 00:00:00,development,/user_guide/documentation/icepyx.html,1 +2026-05-04 00:00:00,latest,/user_guide/documentation/icepyx.html,2 +2026-05-04 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-05-05 00:00:00,stable,/_icepyx/icepyx.Query.start_time.html,1 +2026-05-05 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.remove.html,1 +2026-05-05 00:00:00,v2.0.0,/community/resources.html,1 +2026-05-05 00:00:00,latest,/contributing/attribution_link.html,2 +2026-05-05 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-05 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-05-05 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-05 00:00:00,latest,/getting_started/install.html,2 +2026-05-05 00:00:00,latest,/getting_started/origin_purpose.html,2 +2026-05-05 00:00:00,development,/index.html,1 +2026-05-05 00:00:00,latest,/index.html,9 +2026-05-05 00:00:00,latest,/tracking/citations.html,1 +2026-05-05 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_all_info.html,1 +2026-05-05 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-05-05 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-05 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-06 00:00:00,latest,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-06 00:00:00,stable,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-05-06 00:00:00,latest,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-05-06 00:00:00,stable,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-05-06 00:00:00,stable,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-05-06 00:00:00,development,/_icepyx/icepyx.Read.variables.html,1 +2026-05-06 00:00:00,bib,/community/resources.html,1 +2026-05-06 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-06 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-06 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-05-06 00:00:00,latest,/getting_started/install.html,1 +2026-05-06 00:00:00,latest,/index.html,4 +2026-05-06 00:00:00,latest,/tracking/citations.html,1 +2026-05-06 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_vars.html,1 +2026-05-06 00:00:00,development,/user_guide/changelog/v0.3.2.html,1 +2026-05-06 00:00:00,stable,/user_guide/changelog/v0.6.4.html,1 +2026-05-06 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-06 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-06 00:00:00,v2.0.0,/user_guide/documentation/components.html,1 +2026-05-07 00:00:00,v2.0.0,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-07 00:00:00,stable,/_icepyx/icepyx.Query.cycles.html,1 +2026-05-07 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-05-07 00:00:00,stable,/_icepyx/icepyx.Query.latest_version.html,1 +2026-05-07 00:00:00,development,/_icepyx/icepyx.Query.spatial.html,1 +2026-05-07 00:00:00,stable,/contributing/attribution_link.html,1 +2026-05-07 00:00:00,latest,/contributing/contribution_guidelines.html,3 +2026-05-07 00:00:00,latest,/contributing/how_to_contribute.html,2 +2026-05-07 00:00:00,latest,/example_notebooks/IS2_DEM_comparison_WIP.html,1 +2026-05-07 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-07 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-07 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-07 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-05-07 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-05-07 00:00:00,stable,/getting_started/citation_link.html,1 +2026-05-07 00:00:00,latest,/index.html,3 +2026-05-07 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-05-07 00:00:00,development,/user_guide/changelog/v0.4.0.html,1 +2026-05-07 00:00:00,latest,/user_guide/changelog/v0.6.2.html,1 +2026-05-07 00:00:00,development,/user_guide/changelog/v0.8.1.html,1 +2026-05-07 00:00:00,bib,/user_guide/documentation/components.html,1 +2026-05-07 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-08 00:00:00,stable,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-08 00:00:00,stable,/_icepyx/icepyx.Query.order_vars.html,1 +2026-05-08 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-08 00:00:00,latest,/_icepyx/icepyx.Quest.save_all.html,1 +2026-05-08 00:00:00,development,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-05-08 00:00:00,stable,/_icepyx/icepyx.Variables.path.html,1 +2026-05-08 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-08 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-08 00:00:00,latest,/contributing/contributors_link.html,1 +2026-05-08 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-08 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-05-08 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-08 00:00:00,development,/example_notebooks/IS2_data_variables.html,1 +2026-05-08 00:00:00,latest,/index.html,1 +2026-05-08 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.file_vars.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-05-08 00:00:00,stable,/user_guide/changelog/v0.1-alpha.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.3.1.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.3.3.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.3.4.html,1 +2026-05-08 00:00:00,stable,/user_guide/changelog/v0.3.4.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.4.0.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-05-08 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-08 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-05-08 00:00:00,development,/user_guide/documentation/icepyx.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Query.order_vars.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Query.spatial.html,1 +2026-05-09 00:00:00,stable,/_icepyx/icepyx.Query.tracks.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Quest.add_icesat2.html,1 +2026-05-09 00:00:00,stable,/_icepyx/icepyx.Quest.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Read.filelist.html,1 +2026-05-09 00:00:00,development,/_icepyx/icepyx.Read.load.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Read.variables.html,1 +2026-05-09 00:00:00,stable,/_icepyx/icepyx.Variables.append.html,1 +2026-05-09 00:00:00,stable,/_icepyx/icepyx.Variables.avail.html,1 +2026-05-09 00:00:00,latest,/_icepyx/icepyx.Variables.product.html,1 +2026-05-09 00:00:00,latest,/community/resources.html,1 +2026-05-09 00:00:00,v2.0.0,/community/resources/2020_IS2_HW.html,1 +2026-05-09 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-09 00:00:00,latest,/contributing/release_guide.html,2 +2026-05-09 00:00:00,stable,/contributing/release_guide.html,1 +2026-05-09 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-09 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-05-09 00:00:00,development,/example_notebooks/IS2_data_read-in.html,1 +2026-05-09 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-09 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-09 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-05-09 00:00:00,v2.0.2,/example_notebooks/QUEST_argo_data_access.html,1 +2026-05-09 00:00:00,latest,/getting_started/install.html,2 +2026-05-09 00:00:00,latest,/index.html,9 +2026-05-09 00:00:00,v2.0.0,/tracking/citations.html,1 +2026-05-09 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.granules.html,1 +2026-05-09 00:00:00,development,/user_guide/changelog/v0.3.1.html,1 +2026-05-09 00:00:00,development,/user_guide/changelog/v0.5.0.html,1 +2026-05-09 00:00:00,stable,/user_guide/changelog/v0.5.0.html,1 +2026-05-09 00:00:00,stable,/user_guide/changelog/v0.6.0.html,1 +2026-05-09 00:00:00,stable,/user_guide/changelog/v0.6.2.html,1 +2026-05-09 00:00:00,latest,/user_guide/changelog/v0.6.4.html,1 +2026-05-09 00:00:00,v2.0.0,/user_guide/changelog/v1.2.0.html,1 +2026-05-09 00:00:00,stable,/user_guide/changelog/v1.3.0.html,1 +2026-05-09 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-10 00:00:00,development,/_icepyx/icepyx.Query.cycles.html,1 +2026-05-10 00:00:00,latest,/_icepyx/icepyx.Query.product.html,1 +2026-05-10 00:00:00,development,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-05-10 00:00:00,development,/_icepyx/icepyx.Query.temporal.html,1 +2026-05-10 00:00:00,latest,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-05-10 00:00:00,latest,/_icepyx/icepyx.Quest.download_all.html,1 +2026-05-10 00:00:00,stable,/_icepyx/icepyx.Quest.html,1 +2026-05-10 00:00:00,latest,/_icepyx/icepyx.Variables.remove.html,1 +2026-05-10 00:00:00,bib,/community/contact.html,1 +2026-05-10 00:00:00,development,/contributing/contribution_guidelines.html,1 +2026-05-10 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-05-10 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-10 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-10 00:00:00,development,/example_notebooks/IS2_data_visualization.html,1 +2026-05-10 00:00:00,latest,/getting_started/install.html,1 +2026-05-10 00:00:00,bib,/getting_started/origin_purpose.html,1 +2026-05-10 00:00:00,latest,/index.html,5 +2026-05-10 00:00:00,latest,/tracking/citations.html,1 +2026-05-10 00:00:00,stable,/user_guide/changelog/index.html,1 +2026-05-10 00:00:00,stable,/user_guide/changelog/v0.3.2.html,1 +2026-05-10 00:00:00,latest,/user_guide/changelog/v0.4.1.html,1 +2026-05-10 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-05-10 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-05-10 00:00:00,latest,/user_guide/documentation/variables.html,1 +2026-05-11 00:00:00,development,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-11 00:00:00,development,/_icepyx/icepyx.Query.dates.html,1 +2026-05-11 00:00:00,latest,/_icepyx/icepyx.Query.end_time.html,1 +2026-05-11 00:00:00,stable,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-05-11 00:00:00,latest,/_icepyx/icepyx.Query.tracks.html,1 +2026-05-11 00:00:00,development,/_icepyx/icepyx.Variables.product.html,1 +2026-05-11 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-11 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-05-11 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-11 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-11 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-05-11 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-05-11 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-11 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-05-11 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-05-11 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-11 00:00:00,latest,/getting_started/install.html,3 +2026-05-11 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-05-11 00:00:00,latest,/index.html,11 +2026-05-11 00:00:00,latest,/tracking/citations.html,1 +2026-05-11 00:00:00,stable,/tracking/downloads.html,1 +2026-05-11 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.html,1 +2026-05-11 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.reqparams.html,1 +2026-05-11 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-05-11 00:00:00,bib,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-11 00:00:00,development,/user_guide/changelog/v0.6.2.html,1 +2026-05-11 00:00:00,stable,/user_guide/changelog/v0.8.0.html,1 +2026-05-11 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-12 00:00:00,stable,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-12 00:00:00,latest,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-12 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-12 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-05-12 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-12 00:00:00,development,/_icepyx/icepyx.Query.product_version.html,1 +2026-05-12 00:00:00,development,/_icepyx/icepyx.Query.visualize_elevation.html,1 +2026-05-12 00:00:00,latest,/community/contact.html,3 +2026-05-12 00:00:00,latest,/community/resources.html,2 +2026-05-12 00:00:00,v2.0.0,/community/resources.html,1 +2026-05-12 00:00:00,stable,/contributing/attribution_link.html,1 +2026-05-12 00:00:00,latest,/contributing/contributors_link.html,1 +2026-05-12 00:00:00,stable,/contributing/development_plan.html,1 +2026-05-12 00:00:00,latest,/contributing/release_guide.html,1 +2026-05-12 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-12 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-05-12 00:00:00,stable,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-12 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-05-12 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-05-12 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-12 00:00:00,latest,/getting_started/install.html,3 +2026-05-12 00:00:00,development,/index.html,1 +2026-05-12 00:00:00,latest,/index.html,6 +2026-05-12 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.html,1 +2026-05-12 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-05-12 00:00:00,v2.0.0,/user_guide/changelog/v0.6.2.html,1 +2026-05-12 00:00:00,stable,/user_guide/changelog/v0.6.3.html,1 +2026-05-12 00:00:00,stable,/user_guide/changelog/v0.8.1.html,1 +2026-05-12 00:00:00,stable,/user_guide/changelog/v1.3.0.html,1 +2026-05-12 00:00:00,stable,/user_guide/changelog/v2.0.0.html,1 +2026-05-12 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-12 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-12 00:00:00,latest,/user_guide/documentation/query.html,999 +2026-05-13 00:00:00,stable,/_icepyx/icepyx.Variables.html,1 +2026-05-13 00:00:00,development,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-05-13 00:00:00,latest,/contributing/contribution_guidelines.html,2 +2026-05-13 00:00:00,latest,/contributing/how_to_contribute.html,2 +2026-05-13 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-13 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-05-13 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-05-13 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-05-13 00:00:00,v2.0.2,/example_notebooks/IS2_data_visualization.html,1 +2026-05-13 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-13 00:00:00,latest,/getting_started/install.html,2 +2026-05-13 00:00:00,stable,/getting_started/origin_purpose.html,1 +2026-05-13 00:00:00,latest,/index.html,6 +2026-05-13 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-13 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.end_time.html,1 +2026-05-13 00:00:00,v2.0.0,/user_guide/changelog/v0.3.1.html,1 +2026-05-13 00:00:00,stable,/user_guide/changelog/v2.0.0.html,1 +2026-05-13 00:00:00,latest,/user_guide/changelog/v2.0.1.html,1 +2026-05-13 00:00:00,stable,/user_guide/changelog/v2.0.1.html,1 +2026-05-13 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-13 00:00:00,latest,/user_guide/documentation/types.html,1 +2026-05-14 00:00:00,latest,/_icepyx/icepyx.Query.cycles.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.dates.html,1 +2026-05-14 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.end_time.html,1 +2026-05-14 00:00:00,stable,/_icepyx/icepyx.Query.granules.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.order_vars.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.spatial.html,2 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.spatial_extent.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.start_time.html,1 +2026-05-14 00:00:00,development,/_icepyx/icepyx.Query.tracks.html,1 +2026-05-14 00:00:00,stable,/_icepyx/icepyx.Read.html,1 +2026-05-14 00:00:00,latest,/_icepyx/icepyx.Variables.version.html,2 +2026-05-14 00:00:00,development,/community/contact.html,1 +2026-05-14 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-14 00:00:00,development,/contributing/code_of_conduct_link.html,1 +2026-05-14 00:00:00,development,/contributing/contribution_guidelines.html,1 +2026-05-14 00:00:00,latest,/contributing/contributors_link.html,1 +2026-05-14 00:00:00,development,/contributing/how_to_contribute.html,2 +2026-05-14 00:00:00,development,/contributing/release_guide.html,1 +2026-05-14 00:00:00,latest,/contributing/release_guide.html,2 +2026-05-14 00:00:00,v2.0.0,/example_notebooks/IS2_cloud_data_access.html,2 +2026-05-14 00:00:00,development,/example_notebooks/IS2_data_access.html,1 +2026-05-14 00:00:00,latest,/example_notebooks/IS2_data_access.html,5 +2026-05-14 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-05-14 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-14 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-14 00:00:00,development,/example_notebooks/IS2_data_visualization.html,1 +2026-05-14 00:00:00,latest,/getting_started/install.html,4 +2026-05-14 00:00:00,development,/getting_started/origin_purpose.html,1 +2026-05-14 00:00:00,latest,/index.html,6 +2026-05-14 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-14 00:00:00,development,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-14 00:00:00,stable,/user_guide/changelog/v0.4.0.html,1 +2026-05-14 00:00:00,latest,/user_guide/changelog/v0.8.0.html,1 +2026-05-14 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-14 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-14 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-05-14 00:00:00,development,/user_guide/documentation/icepyx.html,1 +2026-05-14 00:00:00,development,/user_guide/documentation/query.html,1 +2026-05-14 00:00:00,latest,/user_guide/documentation/quest.html,1 +2026-05-15 00:00:00,development,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-15 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,1 +2026-05-15 00:00:00,development,/_icepyx/icepyx.Query.temporal.html,1 +2026-05-15 00:00:00,stable,/_icepyx/icepyx.Read.product.html,2 +2026-05-15 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-15 00:00:00,development,/contributing/contributors_link.html,1 +2026-05-15 00:00:00,latest,/contributing/how_to_contribute.html,2 +2026-05-15 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-15 00:00:00,v2.0.0,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-15 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-05-15 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-15 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-05-15 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-15 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-05-15 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,1 +2026-05-15 00:00:00,development,/getting_started/origin_purpose.html,1 +2026-05-15 00:00:00,stable,/getting_started/origin_purpose.html,1 +2026-05-15 00:00:00,latest,/index.html,7 +2026-05-15 00:00:00,stable,/index.html,1 +2026-05-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_all_info.html,1 +2026-05-15 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_version.html,1 +2026-05-15 00:00:00,latest,/user_guide/changelog/v1.3.0.html,4 +2026-05-15 00:00:00,development,/user_guide/documentation/icepyx-quest.html,1 +2026-05-15 00:00:00,stable,/user_guide/documentation/query.html,1 +2026-05-15 00:00:00,development,/user_guide/documentation/read.html,1 +2026-05-15 00:00:00,latest,/user_guide/documentation/read.html,2 +2026-05-16 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-16 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,1 +2026-05-16 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,1 +2026-05-16 00:00:00,latest,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-05-16 00:00:00,latest,/_icepyx/icepyx.Variables.html,1 +2026-05-16 00:00:00,latest,/community/resources.html,2 +2026-05-16 00:00:00,stable,/community/resources.html,1 +2026-05-16 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-16 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-16 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-16 00:00:00,latest,/getting_started/install.html,1 +2026-05-16 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-05-16 00:00:00,bib,/index.html,1 +2026-05-16 00:00:00,latest,/index.html,7 +2026-05-16 00:00:00,latest,/user_guide/changelog/v1.3.0.html,3 +2026-05-17 00:00:00,latest,/_icepyx/icepyx.Quest.html,1 +2026-05-17 00:00:00,stable,/contributing/attribution_link.html,1 +2026-05-17 00:00:00,stable,/contributing/icepyx_internals.html,1 +2026-05-17 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-17 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-17 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-17 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-05-17 00:00:00,stable,/example_notebooks/IS2_data_visualization.html,1 +2026-05-17 00:00:00,bib,/getting_started/install.html,1 +2026-05-17 00:00:00,latest,/getting_started/install.html,1 +2026-05-17 00:00:00,latest,/index.html,8 +2026-05-17 00:00:00,bib,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-17 00:00:00,v2.0.1,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-17 00:00:00,stable,/user_guide/changelog/v0.3.2.html,1 +2026-05-17 00:00:00,v2.0.1,/user_guide/changelog/v0.3.2.html,1 +2026-05-17 00:00:00,stable,/user_guide/changelog/v0.3.3.html,1 +2026-05-17 00:00:00,v2.0.0,/user_guide/changelog/v0.3.3.html,3 +2026-05-17 00:00:00,v2.0.1,/user_guide/changelog/v0.3.3.html,1 +2026-05-17 00:00:00,v2.0.1,/user_guide/changelog/v0.3.4.html,1 +2026-05-17 00:00:00,latest,/user_guide/changelog/v1.3.0.html,3 +2026-05-18 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-18 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-18 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-18 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-18 00:00:00,latest,/example_notebooks/IS2_data_access.html,7 +2026-05-18 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-05-18 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-05-18 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-18 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-05-18 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-05-18 00:00:00,bib,/getting_started/example_link.html,1 +2026-05-18 00:00:00,latest,/getting_started/install.html,4 +2026-05-18 00:00:00,latest,/index.html,9 +2026-05-18 00:00:00,latest,/tracking/citations.html,1 +2026-05-18 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-18 00:00:00,bib,/user_guide/documentation/icepyx.html,1 +2026-05-19 00:00:00,v2.0.0,/_icepyx/icepyx.Query.end_time.html,1 +2026-05-19 00:00:00,v2.0.0,/_icepyx/icepyx.Query.start_time.html,1 +2026-05-19 00:00:00,latest,/_icepyx/icepyx.Variables.html,1 +2026-05-19 00:00:00,development,/community/contact.html,1 +2026-05-19 00:00:00,latest,/contributing/attribution_link.html,1 +2026-05-19 00:00:00,v2.0.0,/contributing/contributors_link.html,1 +2026-05-19 00:00:00,latest,/contributing/development_plan.html,1 +2026-05-19 00:00:00,latest,/example_notebooks/IS2_data_access.html,10 +2026-05-19 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,4 +2026-05-19 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,4 +2026-05-19 00:00:00,stable,/example_notebooks/IS2_data_read-in.html,1 +2026-05-19 00:00:00,latest,/example_notebooks/IS2_data_variables.html,5 +2026-05-19 00:00:00,stable,/example_notebooks/IS2_data_variables.html,1 +2026-05-19 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,3 +2026-05-19 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,2 +2026-05-19 00:00:00,latest,/getting_started/install.html,2 +2026-05-19 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-05-19 00:00:00,latest,/index.html,8 +2026-05-19 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-19 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-19 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-05-19 00:00:00,v2.0.0,/user_guide/documentation/variables.html,1 +2026-05-20 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-20 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-20 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-20 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-20 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-20 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-20 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-05-20 00:00:00,latest,/index.html,5 +2026-05-20 00:00:00,stable,/user_guide/changelog/v0.7.0.html,1 +2026-05-20 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-21 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,17 +2026-05-21 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,25 +2026-05-21 00:00:00,development,/_icepyx/icepyx.Variables.parse_var_list.html,1 +2026-05-21 00:00:00,latest,/community/resources.html,1 +2026-05-21 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-21 00:00:00,latest,/contributing/icepyx_internals.html,1 +2026-05-21 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-21 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-05-21 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,8 +2026-05-21 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-21 00:00:00,latest,/example_notebooks/IS2_data_variables.html,2 +2026-05-21 00:00:00,bib,/getting_started/example_link.html,1 +2026-05-21 00:00:00,latest,/getting_started/install.html,1 +2026-05-21 00:00:00,latest,/index.html,3 +2026-05-21 00:00:00,v2.0.2,/index.html,1 +2026-05-21 00:00:00,v2.0.1,/user_guide/changelog/v0.8.1.html,1 +2026-05-21 00:00:00,latest,/user_guide/documentation/components.html,2 +2026-05-21 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-22 00:00:00,v2.0.2,/_icepyx/icepyx.Query.CMRparams.html,1 +2026-05-22 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,4 +2026-05-22 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,2 +2026-05-22 00:00:00,v2.0.1,/_icepyx/icepyx.Variables.html,1 +2026-05-22 00:00:00,development,/_icepyx/icepyx.Variables.product.html,1 +2026-05-22 00:00:00,stable,/_icepyx/icepyx.Variables.product.html,1 +2026-05-22 00:00:00,v2.0.1,/_icepyx/icepyx.Variables.product.html,1 +2026-05-22 00:00:00,bib,/community/resources.html,1 +2026-05-22 00:00:00,latest,/community/resources.html,1 +2026-05-22 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-22 00:00:00,latest,/contributing/release_guide.html,1 +2026-05-22 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-22 00:00:00,development,/example_notebooks/IS2_data_access.html,1 +2026-05-22 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-05-22 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,6 +2026-05-22 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-05-22 00:00:00,bib,/getting_started/example_link.html,1 +2026-05-22 00:00:00,latest,/getting_started/install.html,3 +2026-05-22 00:00:00,v2.0.1,/getting_started/install.html,1 +2026-05-22 00:00:00,latest,/index.html,9 +2026-05-22 00:00:00,latest,/user_guide/changelog/index.html,1 +2026-05-22 00:00:00,latest,/user_guide/changelog/v0.1-alpha.html,1 +2026-05-22 00:00:00,v2.0.2,/user_guide/changelog/v0.2-alpha.html,1 +2026-05-22 00:00:00,v2.0.1,/user_guide/changelog/v0.6.3.html,1 +2026-05-22 00:00:00,v2.0.0,/user_guide/changelog/v0.6.4.html,1 +2026-05-22 00:00:00,v2.0.1,/user_guide/changelog/v0.6.4.html,1 +2026-05-22 00:00:00,v2.0.0,/user_guide/changelog/v0.7.0.html,1 +2026-05-22 00:00:00,latest,/user_guide/changelog/v1.3.0.html,3 +2026-05-22 00:00:00,latest,/user_guide/changelog/v2.0.0.html,1 +2026-05-22 00:00:00,v2.0.1,/user_guide/changelog/v2.0.1.html,1 +2026-05-22 00:00:00,v2.0.2,/user_guide/changelog/v2.0.1.html,1 +2026-05-22 00:00:00,latest,/user_guide/changelog/v2.0.2.html,3 +2026-05-22 00:00:00,v2.0.1,/user_guide/documentation/variables.html,1 +2026-05-23 00:00:00,v2.0.2,/_icepyx/icepyx.Query.product_all_info.html,1 +2026-05-23 00:00:00,v2.0.0,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-23 00:00:00,development,/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-05-23 00:00:00,v2.0.0,/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-05-23 00:00:00,v2.0.1,/_icepyx/icepyx.Variables.append.html,1 +2026-05-23 00:00:00,latest,/community/resources.html,1 +2026-05-23 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-23 00:00:00,development,/example_notebooks/IS2_data_read-in.html,1 +2026-05-23 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,2 +2026-05-23 00:00:00,v2.0.2,/example_notebooks/IS2_data_variables.html,1 +2026-05-23 00:00:00,latest,/index.html,7 +2026-05-23 00:00:00,latest,/tracking/citations.html,1 +2026-05-23 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.dataset_summary_info.html,1 +2026-05-23 00:00:00,latest,/user_guide/changelog/index.html,2 +2026-05-23 00:00:00,latest,/user_guide/changelog/v1.3.0.html,2 +2026-05-23 00:00:00,latest,/user_guide/changelog/v2.0.2.html,1 +2026-05-23 00:00:00,v2.0.2,/user_guide/documentation/query.html,1 +2026-05-24 00:00:00,v2.0.1,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-05-24 00:00:00,v2.0.1,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-24 00:00:00,v2.0.1,/_icepyx/icepyx.Query.order_granules.html,1 +2026-05-24 00:00:00,development,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-24 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-24 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,2 +2026-05-24 00:00:00,bib,/getting_started/citation_link.html,1 +2026-05-24 00:00:00,latest,/getting_started/install.html,1 +2026-05-24 00:00:00,latest,/index.html,6 +2026-05-24 00:00:00,latest,/tracking/citations.html,1 +2026-05-24 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-25 00:00:00,v2.0.0,/_icepyx/icepyx.Query.temporal.html,1 +2026-05-25 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.version.html,1 +2026-05-25 00:00:00,v2.0.0,/community/resources.html,1 +2026-05-25 00:00:00,v2.0.1,/contributing/how_to_contribute.html,1 +2026-05-25 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-25 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-25 00:00:00,stable,/example_notebooks/QUEST_argo_data_access.html,1 +2026-05-25 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-25 00:00:00,latest,/getting_started/install.html,3 +2026-05-25 00:00:00,latest,/index.html,4 +2026-05-25 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-26 00:00:00,latest,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-26 00:00:00,development,/_icepyx/icepyx.Query.html,1 +2026-05-26 00:00:00,latest,/_icepyx/icepyx.Query.order_granules.html,4 +2026-05-26 00:00:00,stable,/_icepyx/icepyx.Query.order_granules.html,1 +2026-05-26 00:00:00,latest,/_icepyx/icepyx.Query.product.html,1 +2026-05-26 00:00:00,latest,/_icepyx/icepyx.Quest.add_argo.html,1 +2026-05-26 00:00:00,development,/_icepyx/icepyx.Read.variables.html,1 +2026-05-26 00:00:00,development,/_icepyx/icepyx.Variables.avail.html,1 +2026-05-26 00:00:00,latest,/_icepyx/icepyx.Variables.html,1 +2026-05-26 00:00:00,latest,/community/contact.html,1 +2026-05-26 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-26 00:00:00,latest,/example_notebooks/IS2_data_access.html,4 +2026-05-26 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-05-26 00:00:00,latest,/index.html,2 +2026-05-26 00:00:00,v2.0.2,/index.html,1 +2026-05-26 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-26 00:00:00,v2.0.0,/user_guide/documentation/components.html,1 +2026-05-26 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-26 00:00:00,bib,/user_guide/documentation/query.html,1 +2026-05-26 00:00:00,latest,/user_guide/documentation/query.html,1 +2026-05-27 00:00:00,v2.0.2,/_icepyx/icepyx.Query.tracks.html,1 +2026-05-27 00:00:00,latest,/community/contact.html,2 +2026-05-27 00:00:00,latest,/contributing/attribution_link.html,1 +2026-05-27 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-27 00:00:00,latest,/contributing/contributors_link.html,1 +2026-05-27 00:00:00,latest,/contributing/development_plan.html,1 +2026-05-27 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-27 00:00:00,latest,/contributing/icepyx_internals.html,2 +2026-05-27 00:00:00,latest,/contributing/quest-available-datasets.html,1 +2026-05-27 00:00:00,latest,/contributing/release_guide.html,1 +2026-05-27 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-27 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-05-27 00:00:00,stable,/example_notebooks/IS2_data_access.html,1 +2026-05-27 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-27 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-05-27 00:00:00,latest,/example_notebooks/IS2_data_variables.html,3 +2026-05-27 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-27 00:00:00,latest,/getting_started/install.html,1 +2026-05-27 00:00:00,latest,/getting_started/origin_purpose.html,1 +2026-05-27 00:00:00,development,/index.html,1 +2026-05-27 00:00:00,latest,/index.html,2 +2026-05-27 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-27 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-05-27 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-28 00:00:00,latest,/_icepyx/icepyx.Query.html,1 +2026-05-28 00:00:00,latest,/_icepyx/icepyx.Query.latest_version.html,1 +2026-05-28 00:00:00,v2.0.2,/_icepyx/icepyx.Query.product_version.html,1 +2026-05-28 00:00:00,v2.0.1,/_icepyx/icepyx.Quest.search_all.html,1 +2026-05-28 00:00:00,bib,/contributing/attribution_link.html,1 +2026-05-28 00:00:00,latest,/contributing/how_to_contribute.html,1 +2026-05-28 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,1 +2026-05-28 00:00:00,latest,/example_notebooks/IS2_data_access.html,3 +2026-05-28 00:00:00,v2.0.2,/example_notebooks/IS2_data_access.html,1 +2026-05-28 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,4 +2026-05-28 00:00:00,latest,/getting_started/citation_link.html,1 +2026-05-28 00:00:00,latest,/getting_started/install.html,3 +2026-05-28 00:00:00,latest,/getting_started/origin_purpose.html,2 +2026-05-28 00:00:00,latest,/index.html,6 +2026-05-28 00:00:00,v2.0.2,/tracking/citations.html,1 +2026-05-28 00:00:00,latest,/user_guide/changelog/v1.3.0.html,1 +2026-05-28 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-28 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-05-28 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-29 00:00:00,stable,/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-29 00:00:00,stable,/_icepyx/icepyx.Query.product.html,1 +2026-05-29 00:00:00,latest,/_icepyx/icepyx.Query.product_summary_info.html,1 +2026-05-29 00:00:00,stable,/_icepyx/icepyx.Query.product_version.html,1 +2026-05-29 00:00:00,development,/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-05-29 00:00:00,v2.0.0,/community/resources/IS2_software.html,1 +2026-05-29 00:00:00,v2.0.0,/contributing/release_guide.html,1 +2026-05-29 00:00:00,latest,/example_notebooks/IS2_cloud_data_access.html,2 +2026-05-29 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-29 00:00:00,latest,/example_notebooks/IS2_data_access2-subsetting.html,1 +2026-05-29 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,1 +2026-05-29 00:00:00,development,/example_notebooks/IS2_data_variables.html,2 +2026-05-29 00:00:00,v2.0.0,/example_notebooks/IS2_data_visualization.html,1 +2026-05-29 00:00:00,latest,/getting_started/install.html,1 +2026-05-29 00:00:00,latest,/index.html,6 +2026-05-29 00:00:00,development,/user_guide/changelog/v0.6.4.html,1 +2026-05-30 00:00:00,latest,/_icepyx/icepyx.Variables.path.html,1 +2026-05-30 00:00:00,latest,/community/resources.html,1 +2026-05-30 00:00:00,v2.0.0,/contributing/code_of_conduct_link.html,1 +2026-05-30 00:00:00,stable,/contributing/contribution_guidelines.html,1 +2026-05-30 00:00:00,bib,/contributing/development_plan.html,2 +2026-05-30 00:00:00,stable,/contributing/icepyx_internals.html,1 +2026-05-30 00:00:00,latest,/example_notebooks/IS2_data_access.html,1 +2026-05-30 00:00:00,development,/example_notebooks/IS2_data_read-in.html,1 +2026-05-30 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-30 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,2 +2026-05-30 00:00:00,latest,/index.html,3 +2026-05-30 00:00:00,stable,/index.html,1 +2026-05-30 00:00:00,latest,/tracking/citations.html,1 +2026-05-30 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.download_granules.html,1 +2026-05-30 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.order_granules.html,1 +2026-05-30 00:00:00,v2.0.0,/user_guide/changelog/v0.3.2.html,1 +2026-05-30 00:00:00,development,/user_guide/changelog/v0.3.3.html,1 +2026-05-30 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-05-30 00:00:00,stable,/user_guide/documentation/components.html,1 +2026-05-30 00:00:00,v2.0.2,/user_guide/documentation/variables.html,1 +2026-05-31 00:00:00,latest,/_icepyx/icepyx.Query.show_custom_options.html,1 +2026-05-31 00:00:00,latest,/_icepyx/icepyx.Query.visualize_spatial_extent.html,1 +2026-05-31 00:00:00,latest,/_icepyx/icepyx.Quest.search_all.html,1 +2026-05-31 00:00:00,stable,/_icepyx/icepyx.Read.load.html,1 +2026-05-31 00:00:00,latest,/community/contact.html,1 +2026-05-31 00:00:00,latest,/community/resources.html,1 +2026-05-31 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-05-31 00:00:00,latest,/contributing/contribution_guidelines.html,1 +2026-05-31 00:00:00,latest,/contributing/development_plan.html,2 +2026-05-31 00:00:00,development,/example_notebooks/IS2_data_access.html,1 +2026-05-31 00:00:00,latest,/example_notebooks/IS2_data_access.html,2 +2026-05-31 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,5 +2026-05-31 00:00:00,latest,/example_notebooks/IS2_data_variables.html,1 +2026-05-31 00:00:00,development,/example_notebooks/IS2_data_visualization.html,1 +2026-05-31 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,5 +2026-05-31 00:00:00,stable,/getting_started/citation_link.html,1 +2026-05-31 00:00:00,latest,/getting_started/install.html,2 +2026-05-31 00:00:00,bib,/index.html,1 +2026-05-31 00:00:00,latest,/index.html,4 +2026-05-31 00:00:00,stable,/tracking/citations.html,1 +2026-05-31 00:00:00,v2.0.0,/tracking/citations.html,1 +2026-05-31 00:00:00,development,/user_guide/changelog/v0.6.3.html,1 +2026-05-31 00:00:00,latest,/user_guide/changelog/v1.2.0.html,1 +2026-05-31 00:00:00,stable,/user_guide/changelog/v1.2.0.html,1 +2026-05-31 00:00:00,stable,/user_guide/changelog/v2.0.2.html,1 +2026-05-31 00:00:00,latest,/user_guide/documentation/icepyx-quest.html,1 +2026-05-31 00:00:00,latest,/user_guide/documentation/icepyx.html,1 +2026-05-31 00:00:00,stable,/user_guide/documentation/icepyx.html,1 +2026-05-31 00:00:00,latest,/user_guide/documentation/read.html,1 +2026-05-31 00:00:00,stable,/user_guide/documentation/variables.html,1 +2026-06-01 00:00:00,latest,/_icepyx/icepyx.GenQuery.html,1 +2026-06-01 00:00:00,development,/_icepyx/icepyx.Query.avail_granules.html,1 +2026-06-01 00:00:00,latest,/_icepyx/icepyx.Query.granules.html,1 +2026-06-01 00:00:00,v2.0.0,/_icepyx/icepyx.Query.tracks.html,1 +2026-06-01 00:00:00,stable,/_icepyx/icepyx.Quest.save_all.html,1 +2026-06-01 00:00:00,v2.0.0,/_icepyx/icepyx.Variables.avail.html,1 +2026-06-01 00:00:00,stable,/contributing/attribution_link.html,1 +2026-06-01 00:00:00,latest,/contributing/code_of_conduct_link.html,1 +2026-06-01 00:00:00,v2.0.0,/contributing/contribution_guidelines.html,1 +2026-06-01 00:00:00,stable,/contributing/contributors_link.html,1 +2026-06-01 00:00:00,stable,/contributing/how_to_contribute.html,1 +2026-06-01 00:00:00,latest,/example_notebooks/IS2_data_access.html,6 +2026-06-01 00:00:00,latest,/example_notebooks/IS2_data_read-in.html,3 +2026-06-01 00:00:00,latest,/example_notebooks/IS2_data_visualization.html,1 +2026-06-01 00:00:00,latest,/example_notebooks/QUEST_argo_data_access.html,3 +2026-06-01 00:00:00,latest,/getting_started/install.html,3 +2026-06-01 00:00:00,latest,/index.html,7 +2026-06-01 00:00:00,stable,/tracking/citations.html,1 +2026-06-01 00:00:00,bib,/user_guide/_icepyx/icepyx.Query.orbit_number.html,1 +2026-06-01 00:00:00,latest,/user_guide/documentation/components.html,1 +2026-06-01 00:00:00,stable,/user_guide/documentation/icepyx-quest.html,1 +2026-06-01 00:00:00,latest,/user_guide/documentation/query.html,2 diff --git a/doc/source/tracking/rtdstats/searches_data.csv b/doc/source/tracking/rtdstats/searches_data.csv new file mode 100644 index 000000000..2fc9298dd --- /dev/null +++ b/doc/source/tracking/rtdstats/searches_data.csv @@ -0,0 +1,68 @@ +Created Date,Query,Total Results +2026-03-09 21:28:44,aat,0 +2026-03-09 21:28:43,aatl1,0 +2026-03-09 21:28:45,atk,0 +2026-04-10 01:40:45,atl03 version,31 +2026-03-09 21:28:46,atl15,2 +2026-05-11 13:17:03,attenuation,1 +2026-04-20 19:15:26,avail_granules,4 +2026-04-03 06:30:21,bathymetry,2 +2026-05-19 16:57:40,bckgrd,0 +2026-05-19 16:57:38,bkg,0 +2026-05-19 16:57:30,bkgrnd,0 +2026-04-15 20:48:11,bounding box,13 +2026-03-26 12:55:14,convert,4 +2026-04-23 14:30:13,del,0 +2026-04-23 14:30:12,delta_tim,0 +2026-04-23 14:30:01,delta_time,5 +2026-04-09 07:14:41,do w n lao,19 +2026-04-02 09:50:38,do'w,0 +2026-04-02 09:50:53,dow,0 +2026-03-31 11:22:58,downlaod,0 +2026-03-31 11:23:02,download,23 +2026-04-03 07:30:44,download,23 +2026-04-09 07:14:38,download,23 +2026-04-16 14:37:24,download,23 +2026-05-07 08:49:27,download,23 +2026-04-02 09:50:51,download_gr,0 +2026-04-02 09:50:50,download_gran,0 +2026-04-02 09:50:46,download_granule,0 +2026-04-02 09:50:39,download——,23 +2026-03-12 10:12:24,earthaccess,9 +2026-03-19 07:15:41,firewall,0 +2026-03-15 19:26:13,full_sat_fract,0 +2026-05-16 17:10:35,globu,0 +2026-04-02 09:50:53,granules,18 +2026-03-26 12:54:37,latitude,13 +2026-05-19 15:17:06,mea,0 +2026-05-19 15:17:02,measured,0 +2026-04-23 15:36:14,merge,5 +2026-03-26 12:55:10,met,0 +2026-03-26 12:55:09,meters,0 +2026-04-15 20:46:39,order.granules,0 +2026-03-31 03:43:31,order_vars,4 +2026-05-19 15:17:00,par,0 +2026-05-19 15:16:59,paramete,0 +2026-03-31 11:15:17,pause,3 +2026-03-15 19:26:17,ph_,0 +2026-03-26 12:54:49,polar stat,1 +2026-03-26 12:54:50,polar stereograp,1 +2026-05-19 15:16:24,product,40 +2026-03-26 12:54:59,pyproj,0 +2026-04-02 09:38:58,query.variables.append,0 +2026-04-02 09:38:57,query.variables.append(var_list=target_variables),8 +2026-04-02 11:16:32,re'a'd,0 +2026-04-02 11:16:32,read,25 +2026-03-11 13:37:18,resume,4 +2026-03-03 13:20:10,shape,1 +2026-03-31 07:55:54,spatial_extent,12 +2026-03-26 12:54:56,stereograp,0 +2026-04-20 19:17:37,temporal,19 +2026-04-23 15:36:13,tim,0 +2026-04-23 14:30:14,time,45 +2026-04-23 15:36:13,timemerg,0 +2026-04-23 15:36:11,timemerge,0 +2026-05-09 08:57:02,token,2 +2026-04-02 09:39:04,variables.append,2 +2026-04-02 11:16:28,visual,1 +2026-03-31 10:12:23,wanted,9