diff --git a/_images/9b5d8ab02e64296adc3751b52ac5dd07110ce7abd0e54537ed109c6c46717c5f.png b/_images/9b5d8ab02e64296adc3751b52ac5dd07110ce7abd0e54537ed109c6c46717c5f.png new file mode 100644 index 0000000..d243fad Binary files /dev/null and b/_images/9b5d8ab02e64296adc3751b52ac5dd07110ce7abd0e54537ed109c6c46717c5f.png differ diff --git a/_images/a18fcb026fb0d0c83360f2b8382a360e552dd50db6aa2db5311259bf5223d3a2.png b/_images/a18fcb026fb0d0c83360f2b8382a360e552dd50db6aa2db5311259bf5223d3a2.png new file mode 100644 index 0000000..4b2c2f6 Binary files /dev/null and b/_images/a18fcb026fb0d0c83360f2b8382a360e552dd50db6aa2db5311259bf5223d3a2.png differ diff --git a/_images/b3e45577786a5769fb54bb550f7032f3a73adc8289e08523d052827560bf3b0e.png b/_images/b3e45577786a5769fb54bb550f7032f3a73adc8289e08523d052827560bf3b0e.png new file mode 100644 index 0000000..8e8dfd7 Binary files /dev/null and b/_images/b3e45577786a5769fb54bb550f7032f3a73adc8289e08523d052827560bf3b0e.png differ diff --git a/_sources/tut02_spe_pd_gpd.ipynb b/_sources/tut02_spe_pd_gpd.ipynb index 012b0a3..2bc7475 100644 --- a/_sources/tut02_spe_pd_gpd.ipynb +++ b/_sources/tut02_spe_pd_gpd.ipynb @@ -60,6 +60,7 @@ "outputs": [], "source": [ "import geopandas as gpd\n", + "import pandas as pd\n", "import pygmt\n", "\n", "# Use a resolution of only 150 dpi for the images within the Jupyter notebook, to keep the file small\n", @@ -81,7 +82,8 @@ "source": [ "### 1.1 Tabular data - `pandas.DataFrame`\n", "\n", - "Use an example dataset with tabular data provided by `PyGMT` and load it into a `pandas.DataFrame`. This dataset contains earthquakes in the area of Japan." + "Use an example dataset with tabular data provided by `PyGMT` and load it into a `pandas.DataFrame`. This dataset contains earthquakes in the area of Japan.\n", + "You can read your own dataset into a `pandas.Dataframe` using [`pandas.read_csv`](https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html) and use it in the same way to make the following plots; of course you have to adjust the column names accordantly." ] }, { @@ -92,7 +94,9 @@ "outputs": [], "source": [ "df_jp_eqs = pygmt.datasets.load_sample_data(name=\"japan_quakes\")\n", - "df_jp_eqs.head()" + "df_jp_eqs.head()\n", + "\n", + "# df_your_dataset = pd.read_csv(\"your_dataset.csv\")" ] }, { @@ -239,7 +243,12 @@ "source": [ "#### 2.1.1 Spatial Data - `geopandas.GeoDataFrame` with line geometry\n", "\n", - "First we download some data into in a [`geopandas.GeoDataFrame`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.html). This dataset contains European rivers with their lengths and names." + "First we download some data into in a [`geopandas.GeoDataFrame`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.html). This dataset contains European rivers with their lengths and names.\n", + "\n", + "In case you face issues with downloading these data:\n", + "1. Copy the URL \"https://www.eea.europa.eu/data-and-maps/data/wise-large-rivers-and-large-lakes/zipped-shapefile-with-wise-large-rivers-vector-line/zipped-shapefile-with-wise-large-rivers-vector-line/at_download/file/wise_large_rivers.zip\" into your browser.\n", + "2. Download the zip file and place it into `~/agu24workshop/book`. Do not unpack the ZIP file.\n", + "3. Replace the URL with the filename of the ZIP file \"wise_large_rivers.zip\" in [`geopandas.read_file`](https://geopandas.org/en/stable/docs/reference/api/geopandas.read_file.html)." ] }, { @@ -254,6 +263,7 @@ " + \"zipped-shapefile-with-wise-large-rivers-vector-line/zipped-shapefile-with-wise-large-rivers-vector-line/\"\n", " + \"at_download/file/wise_large_rivers.zip\"\n", ")\n", + "# gpd_rivers_org = pd.read_file(\"wise_large_rivers.zip\")\n", "gpd_rivers_org.head()" ] }, @@ -542,7 +552,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.7" + "version": "3.12.6" } }, "nbformat": 4, diff --git a/reports/tut03_spe_xarray.err.log b/reports/tut03_spe_xarray.err.log deleted file mode 100644 index 0e07db4..0000000 --- a/reports/tut03_spe_xarray.err.log +++ /dev/null @@ -1,95 +0,0 @@ -Traceback (most recent call last): - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution - executenb( - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/nbclient/client.py", line 1314, in execute - return NotebookClient(nb=nb, resources=resources, km=km, **kwargs).execute() - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped - return loop.run_until_complete(inner) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/asyncio/base_events.py", line 687, in run_until_complete - return future.result() - ^^^^^^^^^^^^^^^ - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/nbclient/client.py", line 709, in async_execute - await self.async_execute_cell( - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/nbclient/client.py", line 1062, in async_execute_cell - await self._check_raise_for_error(cell, cell_index, exec_reply) - File "/home/runner/micromamba/envs/agu24workshop/lib/python3.12/site-packages/nbclient/client.py", line 918, in _check_raise_for_error - raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content) -nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell: ------------------- -with pygmt.config(GMT_DATA_SERVER="NOAA"): - grid = pygmt.datasets.load_earth_relief(resolution="01d") -grid ------------------- - ------ stderr ----- -gmtread [NOTICE]: Remote data courtesy of GMT data server NOAA [http://noaa.generic-mapping-tools.org] ------ stderr ----- -gmtread [NOTICE]: SRTM15 Earth Relief v2.6 at 1x1 arc degrees reduced by Gaussian Cartesian filtering (314.5 km fullwidth) [Tozer et al., 2019]. ------ stderr ----- -gmtread [NOTICE]: -> Download grid file [112K]: earth_relief_01d_g.grd ------ stderr ----- -gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer ------ stderr ----- -gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd ------ stderr ----- -gmtread [NOTICE]: -> Download grid file [112K]: earth_relief_01d_g.grd ------ stderr ----- -gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer ------ stderr ----- -gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd ------ stderr ----- -gmtread [ERROR]: File @earth_relief_01d_g.grd not found ------ stderr ----- -[Session pygmt-session (3)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) ------------------- - ---------------------------------------------------------------------------- -GMTCLibError Traceback (most recent call last) -Cell In[2], line 2 - 1 with pygmt.config(GMT_DATA_SERVER="NOAA"): -----> 2 grid = pygmt.datasets.load_earth_relief(resolution="01d") - 3 grid - -File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/datasets/earth_relief.py:176, in load_earth_relief(resolution, region, registration, data_source, use_srtm) - 174 case "gebco" | "gebcosi": - 175 name = "earth_gebco" ---> 176 grid = _load_remote_dataset( - 177  name=name, - 178  prefix=prefix, - 179  resolution=resolution, - 180  region=region, - 181  registration=registration, - 182 ) - 183 return grid - -File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/helpers/decorators.py:773, in kwargs_to_strings..converter..new_module(*args, **kwargs) - 770 bound.arguments["kwargs"][arg] = newvalue - 772 # Execute the original function and return its output ---> 773 return module_func(*bound.args, **bound.kwargs) - -File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/datasets/load_remote_dataset.py:416, in _load_remote_dataset(name, prefix, resolution, region, registration) - 414 with Session() as lib: - 415 with lib.virtualfile_out(kind="grid") as voutgrd: ---> 416 lib.call_module( - 417  module="read", - 418  args=[fname, voutgrd, *build_arg_list(kwdict)], - 419  ) - 420 grid = lib.virtualfile_to_raster(outgrid=None, vfname=voutgrd) - 422 # Full path to the grid if not tiled grids. - -File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/clib/session.py:656, in Session.call_module(self, module, args) - 654 status = c_call_module(self.session_pointer, module.encode(), mode, argv) - 655 if status != 0: ---> 656 raise GMTCLibError( - 657 f"Module '{module}' failed with status code {status}:\n{self._error_message}" - 658 ) - -GMTCLibError: Module 'read' failed with status code 16: -gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer -gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd -gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer -gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd -gmtread [ERROR]: File @earth_relief_01d_g.grd not found - diff --git a/searchindex.js b/searchindex.js index 9cdddf1..32a63bd 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"0.1 2-D map view": [[5, "d-map-view"]], "0.2 Zoomed in view": [[5, "zoomed-in-view"]], "0\ufe0f\u20e3 General stuff": [[2, "general-stuff"], [4, "general-stuff"]], "0\ufe0f\u20e3 Importing": [[1, "importing"]], "0\ufe0f\u20e3 Mars relief data": [[5, "mars-relief-data"]], "0\ufe0f\u20e3 What is Xarray?": [[3, "what-is-xarray"]], "1.1 Drawing coastline \u2013 pygmt.Figure.coast": [[1, "drawing-coastline-pygmt-figure-coast"]], "1.1 Tabular data - pandas.DataFrame": [[2, "tabular-data-pandas-dataframe"]], "1.1. What is an Animation?": [[6, "what-is-an-animation"]], "1.2 Coloring and add map element (frame and ticks)": [[1, "coloring-and-add-map-element-frame-and-ticks"]], "1.2 Create a Cartesian histogram": [[2, "create-a-cartesian-histogram"]], "1.2. How to Make an Animation": [[6, "how-to-make-an-animation"]], "1.3 Create a geographical map showing the epicenters (scatter plot)": [[2, "create-a-geographical-map-showing-the-epicenters-scatter-plot"]], "1.3 Stacking approach of GMT / PyGMT": [[1, "stacking-approach-of-gmt-pygmt"]], "1.3. Why use GMT for animations?": [[6, "why-use-gmt-for-animations"]], "1.4. Types of animations in GMT": [[6, "types-of-animations-in-gmt"]], "1.5. Prerequisites": [[6, "prerequisites"]], "1\ufe0f\u20e3 Prepare gridded data: pygmt.xyz2grd": [[4, "prepare-gridded-data-pygmt-xyz2grd"]], "1\ufe0f\u20e3 Starting your first figure \u2013 pygmt.Figure": [[1, "starting-your-first-figure-pygmt-figure"]], "1\ufe0f\u20e3 Using grdview for 3-D Visualization": [[5, "using-grdview-for-3-d-visualization"]], "1\ufe0f\u20e3 Why use Xarray with PyGMT": [[3, "why-use-xarray-with-pygmt"]], "1\ufe0f\u20e3 pandas": [[2, "pandas"]], "1\ufe0f\u20e3. Introduction": [[6, "introduction"]], "2.1 Getting a DEM mosaic": [[5, "getting-a-dem-mosaic"]], "2.1 Line geometry": [[2, "line-geometry"]], "2.1. Goals of the Tutorial": [[6, "goals-of-the-tutorial"]], "2.1.1 Spatial Data - geopandas.GeoDataFrame with line geometry": [[2, "spatial-data-geopandas-geodataframe-with-line-geometry"]], "2.1.2 Create a geographical map of the rivers": [[2, "create-a-geographical-map-of-the-rivers"]], "2.1.3 Plot subsets of the rivers differently": [[2, "plot-subsets-of-the-rivers-differently"]], "2.1.4 Plot the rivers with color-coding for the river length": [[2, "plot-the-rivers-with-color-coding-for-the-river-length"]], "2.2 Getting RGB imagery": [[5, "getting-rgb-imagery"]], "2.2 Polygon geometry": [[2, "polygon-geometry"]], "2.2. Make first image": [[6, "make-first-image"]], "2.2.1 Spatial Data - geopandas.GeoDataFrame with polygon geometry": [[2, "spatial-data-geopandas-geodataframe-with-polygon-geometry"]], "2.2.2 Create a choropleth map": [[2, "create-a-choropleth-map"]], "2.3. Make the Master Frame": [[6, "make-the-master-frame"]], "2.3.1. What is GMT movie?": [[6, "what-is-gmt-movie"]], "2.3.2. First Attempt": [[6, "first-attempt"]], "2.3.3. The Canvas": [[6, "the-canvas"]], "2.3.4. Second attempt. Fix the canvas": [[6, "second-attempt-fix-the-canvas"]], "2.4. Make draft animation": [[6, "make-draft-animation"]], "2.4.1. First attempt": [[6, "id1"]], "2.4.2. Movie Parameters": [[6, "movie-parameters"]], "2.4.3. How to set the number of Frames": [[6, "how-to-set-the-number-of-frames"]], "2.4.4. Second attempt. Use parameters": [[6, "second-attempt-use-parameters"]], "2.5. Make full animation": [[6, "make-full-animation"]], "2\ufe0f\u20e3 Antarctic Digital Elevation Model": [[5, "antarctic-digital-elevation-model"]], "2\ufe0f\u20e3 Create a contour map: pygmt.Figure.grdcontour": [[4, "create-a-contour-map-pygmt-figure-grdcontour"]], "2\ufe0f\u20e3 Downloading global dataset \u2013 pygmt.datasets": [[1, "downloading-global-dataset-pygmt-datasets"]], "2\ufe0f\u20e3 GeoPandas": [[2, "geopandas"]], "2\ufe0f\u20e3 Getting started": [[3, "getting-started"]], "2\ufe0f\u20e3. Tutorial 1. Earth spinning": [[6, "tutorial-1-earth-spinning"]], "3.1 Choose a profile": [[4, "choose-a-profile"]], "3.1 Customizing colorbar \u2013 pygmt.makecpt": [[1, "customizing-colorbar-pygmt-makecpt"]], "3.1. Goals of the Tutorial": [[7, "goals-of-the-tutorial"]], "3.2 Adding pygmt.Figure.colorbar": [[1, "adding-pygmt-figure-colorbar"]], "3.2 Make image": [[7, "make-image"]], "3.2 pygmt.project": [[4, "pygmt-project"]], "3.3 pygmt.grdtrack": [[4, "pygmt-grdtrack"]], "3.3. Make master frame": [[7, "make-master-frame"]], "3.3.1. First attempt (first frame)": [[7, "first-attempt-first-frame"]], "3.3.2. The events module": [[7, "the-events-module"]], "3.3.3. Second attempt (first frame with events)": [[7, "second-attempt-first-frame-with-events"]], "3.3.4. Third attempt (last frame with events)": [[7, "third-attempt-last-frame-with-events"]], "3.4 Create a Cartesian plot showing the elevation along the profile": [[4, "create-a-cartesian-plot-showing-the-elevation-along-the-profile"]], "3.4. Make draft animation": [[7, "make-draft-animation"]], "3.4.1. First attempt": [[7, "first-attempt"]], "3.4.2. The background script": [[7, "the-background-script"]], "3.4.3. Second attempt (with background script)": [[7, "second-attempt-with-background-script"]], "3.5. Make full animation": [[7, "make-full-animation"]], "3.6. Make full animation with enhancement": [[7, "make-full-animation-with-enhancement"]], "3.6.1. How to enhance symbols with events": [[7, "how-to-enhance-symbols-with-events"]], "3.6.2. Make full animation": [[7, "id2"]], "3\ufe0f. Tutorial 2. Earthquakes": [[7, "tutorial-2-earthquakes"]], "3\ufe0f\u20e3 Additional comments": [[2, "additional-comments"]], "3\ufe0f\u20e3 Create a profile plot: pygmt.project and pygmt.grdtrack": [[4, "create-a-profile-plot-pygmt-project-and-pygmt-grdtrack"]], "3\ufe0f\u20e3 Draping RGB image on 3-D topography": [[5, "draping-rgb-image-on-3-d-topography"]], "3\ufe0f\u20e3 Plotting raster data": [[3, "plotting-raster-data"]], "3\ufe0f\u20e3 Visualizing grid \u2013 pygmt.Figure.grdimage": [[1, "visualizing-grid-pygmt-figure-grdimage"]], "3\ufe0f\u20e3. Tutorial 2. Earthquakes": [[6, "tutorial-2-earthquakes"]], "4.1 Add a beachball": [[4, "add-a-beachball"]], "4.2 Add the seismicity": [[4, "add-the-seismicity"]], "4\ufe0f\u20e3 Add additional features": [[4, "add-additional-features"]], "4\ufe0f\u20e3 Creating multi-panel figures in a canvas \u2013 pygmt.Figure.subplot and pygmt.Figure.set_panel": [[1, "creating-multi-panel-figures-in-a-canvas-pygmt-figure-subplot-and-pygmt-figure-set-panel"]], "4\ufe0f\u20e3 Orientation / suggestion for \u201c2.1.4 Plot the rivers with color-coding for the river length\u201d": [[2, "orientation-suggestion-for-2-1-4-plot-the-rivers-with-color-coding-for-the-river-length"]], "4\ufe0f\u20e3 Processing raster data": [[3, "processing-raster-data"]], "4\ufe0f\u20e3. See also": [[6, "see-also"], [7, "see-also"]], "5\ufe0f. References": [[6, "references"]], "5\ufe0f\u20e3 Additional comments": [[4, "additional-comments"]], "5\ufe0f\u20e3 Basic projection types": [[1, "basic-projection-types"]], "5\ufe0f\u20e3 Download data and load with Xarray": [[3, "download-data-and-load-with-xarray"]], "5\ufe0f\u20e3. References": [[7, "references"]], "6\ufe0f\u20e3 Open data directly from the cloud": [[3, "open-data-directly-from-the-cloud"]], "6\ufe0f\u20e3 Orientation / suggestion for \u201c4.2 Add seismicity\u201d": [[4, "orientation-suggestion-for-4-2-add-seismicity"]], "Mastering Geospatial Visualizations with GMT/PyGMT": [[0, null]], "Step Goals:": [[6, null]], "Technical Information": [[6, null], [6, null], [6, null], [6, null], [7, null], [7, null], [7, null], [7, null], [7, null]], "Tutorial 1 - First figure \ud83d\ude80 and Subplots / layout": [[1, null]], "Tutorial 2 - scientific Python ecosystem \ud83d\udc0d: pandas and GeoPandas (tabular data \ud83d\uddd2\ufe0f)": [[2, null]], "Tutorial 3 - scientific Python ecosystem \ud83d\udc0d: Xarray (gridded data \ud83c\udf10)": [[3, null]], "Tutorial 4 - Geophysics (Seismology) \ud83c\udf0e\ud83c\udf0f\ud83c\udf0d": [[4, null]], "Tutorial 5 - 3-D Topography (Planetary / Antarctic maps) \ud83c\udfd4\ufe0f": [[5, null]], "Tutorial 6 - Animations with GMT \ud83c\udfa6": [[6, null]], "Tutorial 6 - Animations with GMT \ud83c\udfa6 (extended)": [[7, null]], "\ud83c\udf20 Setting up your environment": [[0, "setting-up-your-environment"]], "\ud83d\udcbb Creating a local environment for running tutorials": [[0, "creating-a-local-environment-for-running-tutorials"]], "\ud83d\udcda Overview of tutorials": [[0, "overview-of-tutorials"]]}, "docnames": ["intro", "tut01_firstfigure", "tut02_spe_pd_gpd", "tut03_spe_xarray", "tut04_geophysics", "tut05_topography", "tut06_animation", "tut06_animation_extended"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9}, "filenames": ["intro.md", "tut01_firstfigure.ipynb", "tut02_spe_pd_gpd.ipynb", "tut03_spe_xarray.ipynb", "tut04_geophysics.ipynb", "tut05_topography.ipynb", "tut06_animation.rst", "tut06_animation_extended.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 4, 5, 6], "0": [6, 7], "00": [4, 5, 7], "000000": [2, 4], "000001": 4, "000002": 5, "0001": 5, "0005": 5, "000624": 4, "000z": 5, "001248": 4, "001871": 4, "002493": 4, "008333": 5, "00833333333333": 5, "008333333333333": 5, "01": [3, 4, 5, 7], "016666666666667": 5, "01666666666667": 5, "016667": 5, "0174532925199433": 5, "019e": 5, "01d": [3, 5], "01t": 7, "02": [2, 4, 5], "0212": 4, "025": 5, "02t02": 7, "02t08": 7, "03": [3, 4, 5], "03333333333333": 5, "033333333333333": 5, "037037": 2, "03arrai": 5, "03m": 1, "03x03": 1, "04": [2, 4], "0408": 2, "04166666666666": 5, "041666666666666": 5, "05": [1, 2, 5], "0522": 4, "0545098": 2, "05481": 5, "058333333333334": 5, "05833333333334": 5, "05971": 2, "05axi": 5, "06": [2, 4, 5, 7], "06666666666666": 5, "066666666666666": 5, "06841": 2, "06axi": 5, "074": 2, "075": 5, "075000000000001": 5, "08": [4, 7], "0807": 2, "08333": 4, "083333": 4, "08333333": 4, "0833333333333": 4, "08333333333333333": 4, "083333333333336": 4, "087288e": 2, "09t00": 5, "09t23": 5, "0_dem": 5, "0_fillvalu": 5, "0add_offset": 5, "0arrai": [4, 5], "0c": 4, "0descript": 4, "0false_east": 5, "0false_north": 5, "0long_nam": [4, 5], "0prime_meridian_nam": 5, "0semi_minor_axi": 5, "0spatial_ref": 5, "0straight_vertical_longitude_from_pol": 5, "0xarrai": 5, "1": 0, "10": [1, 2, 4, 5, 6, 7], "100": 7, "1000": 4, "10000": 7, "102": 2, "1029": [5, 6, 7], "1033": 4, "10432": 2, "1044": 4, "105263": 2, "108": 4, "1080": 6, "1080p": 6, "1083": 4, "1091": 4, "109k": 5, "10c": 1, "10p": 4, "11": [2, 5, 6, 7], "110": 4, "112k": 3, "1132": 4, "114": 4, "116": 4, "117": [4, 5], "119": [2, 3], "12": [3, 4, 5, 6, 7], "1204": 4, "124": 4, "1241": 2, "126": 4, "1261": 4, "1280": 6, "129": 4, "1298": 4, "12c": [1, 3], "12kb": 5, "13": [1, 2, 3, 4, 5, 6], "1300000": 5, "1300016": 5, "1300048": 5, "1300080": 5, "1300112": 5, "1300144": 5, "1300176": 5, "1300208": 5, "1300240": 5, "1300272": 5, "1300304": 5, "130540": 4, "1306": 2, "131": 2, "133": 5, "1369712": 5, "1369744": 5, "1369776": 5, "1369808": 5, "1369840": 5, "1369872": 5, "1369904": 5, "1369936": 5, "1369968": 5, "1370000": 5, "1370016": 5, "13c": 6, "14": [2, 5], "141": [2, 4], "142": 2, "1428": 2, "142857": 2, "145": 2, "146": 4, "149": 2, "14934": 2, "15": [1, 2, 5], "150": [1, 2, 4, 5], "1500000": 2, "151": 5, "1510": 4, "152": 2, "1554": 2, "1561": 5, "1561lon": 5, "157": 1, "157895": 2, "1581": 2, "15x15": 5, "16": [2, 3, 5, 6, 7], "160": 6, "162452e": 2, "16666666666666666": 4, "16666666666667": 4, "16666667": 4, "166667": 4, "1667": 4, "167": 5, "1679062": 2, "1682737": 2, "169": 7, "16913961": 2, "16c": 4, "16mb": 5, "17": [4, 5, 6], "170": 5, "171": 5, "172": 5, "173": 5, "174": [3, 5], "175": [3, 5], "176": [3, 5], "1764": 2, "177": [3, 5], "178": [3, 5], "17841": 2, "179": [3, 5], "17_33": 5, "17_33_32m_v2": 5, "17_34": 5, "17_34_32m_v2": 5, "18": [2, 5, 7], "180": [1, 3, 5], "181": [3, 5], "181lon": 5, "182": 3, "18238": 2, "183": 3, "1846": 2, "18c": 1, "18kb": 5, "18p": 7, "19": [4, 5], "190": 4, "19049": 2, "1920": 6, "1923": 5, "1925": 5, "19252": 2, "1926": 5, "1928": 5, "1929": 5, "1931": 5, "1932": 5, "19565": 2, "1984projected_crs_nam": 5, "1987": 2, "19916704": 2, "1_300_000": 5, "1_370_000": 5, "1c": [2, 4], "1d": 7, "1kb": 5, "1mb": 4, "1p": [1, 2, 4], "1x1": [3, 5], "2": 0, "20": [2, 4, 5, 6, 7], "200000": 2, "2003": 5, "2003gl017048": 5, "2015": 3, "2018": [6, 7], "2019": [1, 3, 5, 6, 7], "2019gc008515": [6, 7], "2020": [1, 2, 4], "2021": 1, "2022": 4, "2023": 4, "2024": [1, 2, 3, 4, 5, 6, 7], "2024gc011545": [6, 7], "205k": 1, "20kb": 5, "21": [2, 5], "210": 1, "2100": 3, "2160": 6, "2160p": 6, "2188": 5, "2188x": 5, "21929": 2, "2199037": 2, "22": 5, "226736": [1, 2, 3, 4, 5, 6, 7], "2269": 5, "2283": 5, "2294": 5, "23": [4, 5], "230": 4, "2300": 5, "23000": 5, "2303": 5, "2315100": 2, "23325": 2, "23472": 2, "235000z": 4, "23791": 2, "24": [2, 4, 5, 6, 7], "240": 6, "240p": 6, "242": 7, "2431": 5, "2432": 5, "24b": 5, "25": [4, 5, 6, 7], "2500": 5, "250000": 5, "250016": 5, "2500255": 5, "250048": 5, "250080": 5, "250112": 5, "250144": 5, "250176": 5, "250208": 5, "250240": 5, "250272": 5, "250304": 5, "250_000": 5, "252": 5, "2522": 5, "2523": 5, "2533": 5, "254": 5, "255": 5, "255arrai": 5, "2564": 5, "2567": 5, "257223563": 5, "257223563reference_ellipsoid_nam": 5, "25c": 4, "25p": 4, "26": [2, 5, 6], "260": 7, "2674": 5, "269909e": 2, "27": [4, 5], "270": [3, 5], "2713": 2, "2714": 5, "2717": 5, "2764963": 2, "2766": 2, "2775788": 2, "27783": 5, "28": [2, 4, 5], "2808": 5, "28196": 2, "283": 2, "2859329": 2, "286": 2, "2876": 2, "28t14": 4, "29": [2, 4, 5], "29071741": 2, "2917": 5, "298": 5, "29t13": 4, "29t14": 4, "29t20": 4, "29t23": 4, "2_": 5, "2_tonemapped_natural_color": 5, "2btyu1tafoveieshimr1kmcjlpuxj8xj1se6zoskuoy9xy0wsjyowvbahr3c7efjlfsayvknrfc4ofb3zqo9bjwhhiugdtgip6bitrupivshiqwmblg05fk": 5, "2c": [2, 4, 5], "2p": 2, "3": 0, "30": [2, 3, 4, 5, 6, 7], "300": 7, "301": 1, "3031": 5, "30m": 1, "30x30": [1, 5], "31": [1, 4, 5], "31027": 2, "311": 2, "314": 3, "314245179inverse_flatten": 5, "317": 2, "3178371": 2, "31t": 7, "32": [1, 4, 5], "320": 6, "329696": 5, "329728": 5, "329760": 5, "329792": 5, "329824": 5, "329856": 5, "329888": 5, "329920": 5, "329952": 5, "329984": 5, "32m": 5, "33": [2, 5], "330000": 5, "330_000": 5, "3333": 6, "33333333333333": 4, "3333333333333333": 4, "333333333333336": 4, "33kb": 5, "34": 5, "340": 1, "3419": 4, "3422319": 2, "3436": 4, "3438": 4, "3440": 4, "3447": 4, "3455": 4, "3470": 4, "3474": 4, "34806": 2, "3488": 7, "3491": 5, "3492": 5, "35": [1, 2, 5, 6], "35911": 2, "36": [2, 5], "360": [5, 6], "360p": 6, "361": [4, 5], "3613": 5, "365": 7, "3674": 5, "3697": 5, "37": [2, 3, 5], "3712": 5, "3726": 5, "373": 2, "3739": 5, "37899": 2, "37e": 5, "38": [2, 5, 7], "383": 2, "3840": [5, 6], "3872": 5, "39": [2, 4, 5], "3a": 5, "3a0bbe8c2e6820a52f6d134152bbbc4a3c": 5, "3a100": 5, "3arrai": 5, "3atru": 5, "3c": [1, 4], "3d": 5, "3d_perspective_imag": 5, "3e": 5, "3kb": [4, 5], "3y": 5, "4": [0, 5], "40": [2, 4, 5, 6], "4000": 4, "4081": 5, "41": [2, 4, 5], "414": 3, "415": 3, "416": 3, "416666666666664": 4, "41666666666666663": 4, "41666666666667": 4, "417": 3, "418": 3, "4185683": 2, "41861": 2, "419": 3, "42": [2, 5], "420": 3, "422": 3, "4223": 7, "423": 2, "4235352": 2, "426": 6, "43": 5, "4320": 6, "4320p": 6, "4326": [2, 5], "435": 5, "44": [2, 4, 5], "4422": 4, "4440": 4, "4445": 4, "4450": 4, "4457": 4, "4464": 4, "45": [4, 5], "456e": 4, "46": [4, 5, 7], "46004621": 2, "4634": 1, "47": [2, 5], "474e": 4, "47e": 4, "48": [2, 5], "480": 6, "480000z": 4, "480p": 6, "481": 4, "481lon": 4, "48492503": 2, "489": 2, "49": [2, 4, 5], "491e": 5, "492e": 5, "4c": [1, 5], "4k": 6, "4kb": 4, "5": [0, 2], "50": [1, 4, 5], "500": [1, 2, 4], "5000": [4, 5], "500000": 4, "5000m": 5, "5013": 2, "501e": 5, "5061533": 2, "51": [2, 4, 5], "511e": 4, "514286": 2, "5194": 5, "51mb": 5, "52": [4, 5], "523kb": 5, "53": [2, 4, 5, 6], "533333": 2, "54": [2, 4, 5, 6], "540": 6, "540p": 6, "542857": 2, "55": [1, 5], "5520": 5, "553238186641": 4, "5556": [6, 7], "5564": [6, 7], "558040": 4, "5582": 4, "5599": 4, "56": [2, 5], "57": [2, 5], "575285314314": 4, "5798": 4, "58": [2, 5], "581447": 4, "5833": 6, "58333333333333": 4, "5833333333333333": 4, "583333333333336": 4, "59": 5, "5918": 2, "59215": 2, "59231": 2, "5c": [1, 4], "5e": 5, "5m": 4, "5p": [2, 4], "6": [0, 1, 2, 5], "60": [4, 5], "600": 5, "600dpi": 5, "601": 1, "602000z": 4, "6067": 2, "60671": 2, "60914": 2, "60915": 2, "61": 5, "611": 4, "615385": 2, "62": [2, 4, 5], "624": 2, "62879": 2, "6288": 2, "63": 5, "6326": 5, "6356752": 5, "6378137": 5, "64": [2, 5], "640": 6, "6416": 2, "64362": 2, "65": [1, 5], "654": [2, 3], "654000z": 4, "655": 3, "656": 3, "656250": 2, "657": 3, "658": 3, "66": [4, 5], "665": 5, "666666666666664": 4, "6666666666666666": 4, "66666666666667": 4, "6667": 6, "67": [2, 4, 5], "67141": 2, "6731": 4, "674": 5, "68": [2, 5], "69": [4, 5], "69715": 2, "7": [1, 2, 4, 5], "70": [4, 5, 7], "700": 5, "7000": [1, 4], "700000": 2, "7030": 5, "71": [4, 5], "7148": 4, "72": 5, "720": 6, "720p": 6, "72716": 2, "73": 5, "7319": 4, "74": [4, 5], "75": [4, 5, 6], "7500": 4, "750000": 2, "7521": 1, "76": 5, "7680": 6, "77": [2, 4, 5, 7], "770": 3, "770357e": 2, "771429": 2, "772": 3, "773": 3, "775000": 2, "777778": 2, "78": [2, 5], "781": 2, "7816": 4, "789474": 2, "79": [2, 4, 5], "7titl": [4, 5], "8": [2, 4, 5], "80": [4, 5, 6, 7], "8000": 1, "8017": 2, "80189": 2, "80363": 2, "81": [2, 5], "812500": 2, "814": 2, "816": 2, "8165": 2, "81681": 2, "81693": 2, "82": [2, 5], "825": 3, "83": [2, 4, 5], "833333": [2, 4], "83333333": 4, "83333333333333": 4, "8355": 7, "8356": 4, "8371573": 2, "84": [2, 4, 5], "8417": 5, "844": 2, "84469": 2, "84e": 5, "84horizontal_datum_nam": 5, "84longitude_of_prime_meridian": 5, "85": [2, 4, 5], "850000": 2, "853000z": 4, "854": 6, "86": [4, 5], "8673": 4, "8692": 2, "87": [2, 5], "88": [2, 5], "8888": 0, "89": [4, 5], "8901": 5, "8b": 5, "8k": 6, "9": [2, 5, 6], "90": [2, 4, 5], "9001": 5, "90109": 2, "904": 4, "90x90": 1, "91": 2, "9122": 5, "9126": 7, "916666666666664": 4, "91666666666667": 4, "91666667": 4, "916667": 4, "92": [2, 4], "924e": 5, "925": 5, "926e": 5, "9283": 2, "928e": 5, "933333333333334": 5, "93333333333334": 5, "94": 2, "94166666666666": 5, "941666666666666": 5, "944209": 4, "95": 5, "958333333333332": 5, "95833333333334": 5, "959": 4, "960": 6, "961810": 4, "966666666666665": 5, "96666666666667": 5, "97": 2, "970": 4, "971358": 4, "975": 5, "97715": 2, "98": [2, 5], "980905": 4, "983333": 5, "98333333333332": 5, "983333333333334": 5, "98514": 2, "986": 2, "99": [2, 4, 5], "990453": 4, "991453": 2, "991666666666667": 5, "99166666666667": 5, "991667": 5, "997583e": 2, "999z": 5, "A": [0, 1, 2, 4, 5, 6], "As": [3, 6], "At": 6, "Be": 6, "But": 1, "By": [1, 4, 5, 6], "For": [0, 2, 4, 5, 6, 7], "If": [0, 1, 6, 7], "In": [1, 2, 3, 4, 5, 6, 7], "It": [5, 6, 7], "NO": 7, "NOT": [6, 7], "On": 1, "Such": 2, "That": 6, "The": [1, 2, 4, 5], "Then": 4, "There": [5, 6], "These": [4, 6], "To": [0, 1, 2, 4, 5, 6], "With": 7, "_error_messag": 3, "_fillvalu": 5, "_imag": 1, "_load_remote_dataset": 3, "a100f50": 4, "a10f5": 4, "a10f5g5": 1, "a2000f500": 1, "a40f20": 1, "a5000": 5, "a5f2": 1, "a9aba5": 5, "about": [4, 6, 7], "abov": [2, 4, 7], "abshir": 5, "ac": 4, "accept": 3, "accept_r": 2, "access": [1, 3, 4, 6], "achiev": [1, 6], "across": [4, 6], "activ": [0, 6], "acton": 4, "actual_rang": 4, "ad": [2, 6], "add": [2, 5, 6, 7], "add_offset": [1, 4, 5], "addit": 3, "addition": [2, 4], "adjust": [2, 4, 5], "advanc": [5, 6], "ae": 5, "af": 5, "affect": [1, 5], "after": 7, "ag": 1, "again": [1, 2, 5], "agu": [1, 2, 3, 4, 5, 6, 7], "agu24": [0, 1, 2, 3, 4, 5, 6, 7], "agu24workshop": [0, 1, 2, 3, 4, 5, 6, 7], "aharonson": 5, "airbnb": 2, "aki": 4, "al": [1, 2, 3, 4, 5, 6, 7], "alaska": 1, "alia": 6, "align": 5, "all": [0, 2, 3, 6, 7], "allow": [2, 3, 4, 5, 6, 7], "along": 0, "alreadi": 4, "also": [0, 1, 2, 4, 5], "altern": 0, "altimet": 5, "altitud": 3, "alwai": 5, "amazonaw": 5, "ambiti": 6, "an": [0, 1, 2, 3, 4, 5, 7], "anaconda": 0, "analysi": 5, "andr": [0, 5], "andrebelem": 5, "anger": [6, 7], "angl": [1, 5], "ani": [1, 2, 3, 4, 5, 6, 7], "anim": 0, "annot": [1, 4], "announc": 7, "annual": [1, 2, 3, 4, 5, 6, 7], "anon": 3, "anoth": [0, 1, 2, 4, 5, 6, 7], "antarct": 0, "antarctica": 5, "anyth": 6, "api": [3, 5], "app": 5, "appeal": [4, 5], "appear": [1, 5, 6, 7], "append": 5, "appli": [4, 6], "approach": 5, "appropri": 2, "approxim": 5, "ar": [0, 1, 2, 4, 5, 6, 7], "arbitrari": 1, "arc": [1, 3, 4, 5], "area": [1, 2, 4, 5, 6], "area_or_point": 5, "areaid": 2, "areascale_factor": 5, "arg": 3, "argument": [2, 3, 4, 5, 6, 7], "argv": 3, "around": [1, 2, 3, 4, 5, 6, 7], "arrai": [4, 5], "arriv": 7, "arrow": 4, "ask": [1, 2, 3, 4, 5, 6, 7], "aspati": 2, "aspect": [2, 4, 5, 6], "assembl": 6, "asset": 5, "assign": 6, "assum": 0, "at_download": 2, "attent": 7, "attribut": [1, 4, 5, 7], "author": [1, 2, 3, 4, 5, 6, 7], "auto": 1, "automat": [1, 2, 5, 6], "avail": [3, 6], "averag": 5, "averagearea_or_point": 5, "avoid": 3, "aw": 5, "ax": 1, "axi": [1, 2, 5], "azimuth": [1, 4, 5], "b": [1, 5, 7], "back": 4, "background": [5, 6], "balanc": [1, 5], "band": 5, "bandpandasindexpandasindex": 5, "bar": [1, 2], "base": [2, 3, 4, 5, 6], "basemap": [2, 4, 7], "bash": [0, 6], "basic": 6, "bear": 5, "becaus": [3, 6, 7], "befor": [1, 3, 4, 7], "begin": [1, 4, 6, 7], "beginn": 6, "behavior": 7, "behind": 1, "being": 6, "bele": [0, 5], "below": [0, 2, 4, 6], "benefit": 3, "benjamin": 5, "besid": [2, 4], "best": 5, "better": [4, 5], "between": [2, 3, 4, 5, 6, 7], "bilbao": 2, "bin": 2, "binder": 0, "bit": [1, 4, 7], "black": [1, 4, 5, 6], "blank": 1, "blob": 5, "blue": 7, "bokeh": 3, "bold": [4, 6], "book": 0, "both": [3, 5, 6, 7], "bottom": [2, 5], "boulevard": 2, "bound": [3, 4, 5], "boundari": [1, 2], "box": [2, 4], "brave": 6, "break": 6, "brighten": 7, "browser": [0, 5], "build": 4, "build_arg_list": 3, "button": [0, 5], "c": [0, 1, 2, 3, 4, 5, 6, 7], "c0": 7, "c1": 7, "c13cx13cx30": 6, "c13cx13cx80": 6, "c24cx12cx30": 7, "c24cx12cx80": 7, "c24cx12x80": 7, "c_call_modul": 3, "calcul": 3, "call": [0, 2, 3, 4, 5, 6], "call_modul": 3, "can": [0, 1, 2, 3, 4, 5, 6, 7], "canva": 7, "captur": 5, "care": 6, "carefulli": 5, "cartesian": [1, 3, 5], "case": [1, 2, 3, 4, 5, 6, 7], "cat": [6, 7], "catalog": [4, 5], "caus": 4, "cc": [2, 4], "cd": 0, "cell": [1, 3, 4], "center": [1, 4, 5, 6], "centimet": [1, 2, 4, 5, 6], "central": [1, 6], "central_meridian": 5, "cf": [1, 4, 5], "cgi": [1, 2, 3, 4, 5, 6, 7], "chang": [1, 3, 5, 6, 7], "charact": 1, "chd": 6, "check": [6, 7], "checkout": 2, "chicago": 2, "chih": 1, "choos": [1, 2, 5], "choropleth": 0, "circel": 2, "circl": [2, 4], "circular": 4, "clair": 5, "clariti": 5, "class": 4, "classic": [1, 4], "clean": 6, "clib": 3, "click": [0, 1, 5], "client": 4, "clip": [4, 5], "clone": 0, "close": [4, 5], "cloud": 5, "cm": [6, 7], "cmap": [1, 2, 3, 4, 5], "cmd": 6, "cmip6": [0, 3], "co": 5, "coast": [0, 2], "coda": 7, "code": [1, 3, 4, 5, 6, 7], "cog": 5, "col": 1, "collect": 5, "color": [4, 5, 6, 7], "colorbar": [0, 2, 3, 4, 5], "colormap": [1, 2, 3, 4, 5], "colourmap": [2, 4], "columbia": 3, "column": [1, 2, 4, 6, 7], "com": [0, 1, 2, 3, 4, 5, 6, 7], "combin": [2, 5, 6], "come": 5, "comfort": 0, "command": [0, 1, 4, 5, 6, 7], "comment": 1, "commun": 2, "complet": [0, 1, 6], "complex": [2, 5, 6, 7], "complic": [4, 6], "compress": 4, "compressionfil": 4, "comput": [3, 5], "concept": 1, "conda": 0, "cone": 1, "confer": [1, 2, 3, 4, 5, 6, 7], "confex": [1, 2, 3, 4, 5, 6, 7], "config": [0, 3, 5], "configur": 5, "confirm": 1, "conic": 1, "connect": 4, "consid": 5, "consist": 5, "consolid": 3, "constant": 6, "consum": 6, "contain": [0, 2, 4, 6, 7], "content": [6, 7], "contin": [2, 5], "continu": [1, 3], "control": [1, 5, 7], "convent": [4, 5], "convers": 6, "convert": [2, 3, 4, 6], "coordin": [1, 2, 3, 4, 5], "copi": 0, "core": [3, 6], "corner": 2, "cornsilk": 4, "correct": 6, "correctli": [6, 7], "could": [6, 7], "count": 2, "countri": [1, 2], "coupl": 3, "cours": [0, 1], "courtesi": [1, 3, 5], "cover": 1, "cpt": [1, 2, 4, 7], "cql": 5, "cquak": 7, "cr": 2, "crameri": [2, 4], "creat": [3, 5, 6, 7], "creation": [1, 6, 7], "cred": 7, "crime": 2, "crowd": 2, "crustal": 1, "cryospher": 5, "csv": 4, "cumul": 4, "current": [1, 2, 6, 7], "curv": 1, "custom": [2, 3, 6, 7], "cut": 1, "cylind": 1, "cylindr": 1, "d": [0, 1, 3, 4, 6, 7], "d6": 7, "da_mar": 5, "da_olympu": 5, "dai": [2, 6, 7], "danub": 2, "darken": 7, "darkgrai": 4, "darkorang": 4, "darkr": 2, "dashboard": 3, "dask": 3, "data": [0, 1, 6, 7], "data_sourc": 3, "dataarrai": [3, 4, 5], "dataarrayband": 5, "datafram": 4, "dataset": [2, 3, 4, 5], "datasetid": 5, "date": [3, 7], "datum": 5, "decai": 7, "decemb": [1, 2, 3, 4, 5, 6, 7], "decor": 3, "dedent": 1, "default": [0, 1, 2, 4, 5, 6, 7], "defin": [1, 2, 4, 6], "degre": [1, 3, 4, 5, 6], "degreehistori": 5, "degrees_eaststandard_nam": [4, 5], "degrees_northstandard_nam": [4, 5], "delaviel": [6, 7], "delet": 6, "dem": 0, "dem_mosa": 5, "demand": 5, "demsource3d": 5, "densiti": 6, "depend": [0, 2], "depth": [2, 3, 4, 7], "depth_km": 2, "desc": 5, "descript": [4, 5], "design": [0, 4], "detail": [1, 2, 5], "determin": [1, 2, 7], "develop": 7, "df": 4, "df_high_mag": 4, "df_jp_eq": 2, "df_low_mag": 4, "diamet": [2, 5], "dictionari": 4, "differ": [1, 3, 4, 5, 6], "dimens": [1, 3, 6], "dimension": 3, "dip": 4, "direct": [1, 4, 5], "directli": [0, 1, 2, 6], "directori": 6, "displai": 6, "disproportion": 1, "distanc": 4, "distort": [1, 4], "distribut": [2, 5], "do": [1, 4, 6, 7], "doc": [0, 1], "document": [1, 2, 6, 7], "doe": [6, 7], "doesn": 6, "doi": [5, 6, 7], "domain": 1, "don": [1, 6], "done": [2, 6, 7], "dot": [5, 6], "doubl": 0, "dougla": 2, "douro": 2, "down": 5, "download": [0, 2, 4, 5, 7], "dpc": [6, 7], "dpi": [2, 4, 6], "dpu": 6, "drapegrid": 5, "draw": [2, 4, 7], "drawn": [6, 7], "dtype": [4, 5], "due": 7, "durat": 7, "dure": [6, 7], "dvd": 6, "e": [0, 1, 2, 4, 5, 6, 7], "e2024gc011545": [6, 7], "each": [0, 1, 4, 6, 7], "earlier": [1, 3], "earth": [1, 3, 5, 7], "earth_ag": [0, 1], "earth_age_30m_g": 1, "earth_gebco": 3, "earth_relief": [0, 3], "earth_relief_01d_g": 3, "earth_relief_03m": 1, "earth_relief_03m_g": 1, "earth_relief_06m": [6, 7], "earthbyt": 1, "earthquak": [2, 4], "easi": 0, "easier": 5, "easiest": 6, "east": [3, 4, 5], "ebro": 2, "ecosystem": 0, "ed": 7, "edit": 6, "edu": [3, 5], "eea": 2, "ef0": [2, 4], "effect": 5, "effici": [5, 7], "egu22pygmt": 5, "either": 0, "elb": 2, "element": [2, 6], "element84": 5, "eleva": 1, "els": 6, "emb": 1, "emphas": 5, "empow": 6, "emul": 0, "enclos": 6, "encod": 3, "end": [4, 6, 7], "end_i": 4, "end_x": 4, "endpoint": 4, "endtim": 4, "enhanc": 5, "ensur": 0, "enter": 1, "entir": [1, 3, 5], "entri": 2, "env": [0, 3], "environ": 6, "eo": 5, "eof": [6, 7], "ep": [5, 7], "epicentr": 4, "epsg": [2, 5], "equal": 5, "equidist": 1, "er": 7, "error": [1, 2, 3, 4, 5, 6, 7], "esm4": 3, "esmeralda": 4, "especi": 1, "essenti": [1, 6], "esteban": [0, 6, 7], "et": [1, 2, 3, 4, 5, 6, 7], "etc": 2, "eu": [2, 5], "europa": 2, "european": 2, "ev": 5, "even": [3, 6], "evenli": 2, "event": [0, 4, 6], "everi": [1, 4, 5], "everyth": 1, "exagger": 5, "exampl": [1, 2, 3, 4, 5, 6, 7], "excess": 6, "execut": [3, 6], "exercis": 5, "expect": [6, 7], "experi": 5, "explain": [2, 6, 7], "explan": [2, 6, 7], "explicitli": 6, "explor": [3, 4, 5], "exponenti": 2, "extend": 6, "extens": [1, 3, 4, 7], "extensionfil": 4, "extent": [1, 5], "extern": [1, 5, 6], "extra": 5, "extract": 4, "f": [1, 2, 3, 6, 7], "f14p": 6, "f9p": 2, "fabio": [2, 4], "factor": [5, 7], "fade": 7, "fail": 3, "failur": 3, "fall": 4, "fals": [4, 5], "false_east": 5, "false_north": 5, "faster": [0, 7], "fault": 4, "featur": [2, 3, 5], "februari": 5, "federico": [0, 6, 7], "fee": [1, 2, 3, 4, 5, 6, 7], "feel": [0, 2, 4], "few": 4, "ffmpeg": 6, "fg": 5, "fgray20": 4, "fhd": 6, "fig": [1, 2, 3, 4, 5], "figsiz": 1, "figur": [0, 2, 3, 5, 6, 7], "file": [0, 1, 2, 3, 4, 5, 6, 7], "filenam": 5, "fill": [1, 2, 4, 6], "filter": [1, 2, 3, 5], "final": [0, 4, 5, 7], "find": [2, 4, 5], "finit": 7, "first": [0, 2, 3, 4, 5], "fish": 6, "fist": [2, 4], "fit": 6, "fix": [1, 2, 3, 4, 5, 7], "flat": 1, "flatten": 5, "float": [1, 4], "float64": [4, 5], "float6412": 5, "float642": 5, "fly": 6, "fmp4": [6, 7], "fname": 3, "focal": 4, "focal_mechan": 4, "focu": 2, "folder": [0, 1], "follow": [0, 1, 5, 6, 7], "font": [1, 2, 4, 7], "font_tag": 7, "footprint": 5, "forc": 4, "foreground": 6, "form": [2, 4, 7], "format": [1, 2, 4, 6], "format_clock_map": 7, "forum": [1, 2, 3, 4, 5, 6, 7], "found": [1, 2, 3, 4, 5, 6, 7], "four": [1, 6], "fp": 6, "frac": 6, "fraction": 5, "frame": [2, 3, 4, 5], "free": [0, 1, 2, 3, 4, 5, 6, 7], "from": [0, 1, 2, 4, 5, 6, 7], "fromtim": 5, "front": 4, "fr\u00f6hlich": [0, 2, 4], "full": 3, "fuller": 2, "fullwidth": [1, 3, 5], "function": [1, 3, 4], "fundament": 1, "further": 2, "g": [0, 1, 2, 3, 4, 5, 6, 7], "galleri": [2, 4, 6, 7], "garvin": 5, "gaussian": [1, 3, 5], "gblack": [6, 7], "gcsf": 3, "gcsfilesystem": 3, "gdf_airbnb": 2, "gebco": 3, "gebcosi": 3, "gener": [0, 1, 3, 5, 6, 7], "genericmappingtool": [0, 1, 2, 3, 4, 5, 6, 7], "geo": 1, "geochemistri": [6, 7], "geodacent": 2, "geodataset": 2, "geodet": 5, "geogc": 5, "geograph": [1, 4], "geojson": 2, "geometri": 5, "geopackag": 2, "geopanda": 0, "geophys": [0, 5, 6, 7], "geospati": [1, 2, 3, 4, 5, 6, 7], "geosystem": [6, 7], "geotiff": 5, "geotransform": 5, "get": [0, 4, 6, 7], "get_ev": 4, "get_mapp": 3, "gfdl": 3, "gif": 6, "git": 0, "github": [0, 1, 2, 3, 4, 5, 6, 7], "give": [1, 4, 5, 6, 7], "given": [1, 2, 5], "global": 4, "gmt": [2, 3, 4, 5], "gmt_app_m_1a": 1, "gmt_data_serv": 3, "gmt_file_not_found": 3, "gmtapi": [4, 5], "gmtcliberror": 3, "gmtcolor": 1, "gmtread": [1, 3, 5], "go": [0, 2, 5], "goal": 5, "good": 5, "googl": 3, "gpd": 2, "gpd_river": 2, "gpd_rivers_long": 2, "gpd_rivers_org": 2, "gpd_rivers_short": 2, "gpkg": 2, "gr": 3, "grab": 5, "grai": [1, 2], "grand": 2, "graphic": 6, "graphicsmagick": 6, "gray10": 2, "gray30": 4, "gray50": 2, "gray99": 2, "grayc": 3, "grd": [1, 3, 5], "grdblend": [1, 5], "grdcontour": 0, "grdcut": 1, "grdgradient": [0, 3, 4], "grdimag": [0, 3, 4, 5, 6, 7], "grdinfo": [0, 1, 4], "grdtrack": 0, "grdview": 0, "great": 4, "green": 7, "greenwich": 5, "greenwichgeographic_crs_nam": 5, "grei": 1, "grid": [0, 5, 6, 7], "grid_crust_ag": 1, "gridlin": [1, 4], "gt": [4, 5], "guadalquivir": 2, "guid": 6, "gwhite": [2, 4], "h": [1, 2, 4, 6, 7], "h0": 5, "ha": [1, 2, 6, 7], "had": 6, "handl": 6, "hard": 7, "harship_in": 2, "have": [0, 1, 2, 4, 5, 6, 7], "hd": 6, "head": [2, 4], "height": [1, 4, 5, 6], "help": [2, 4, 5, 6], "helper": 3, "helvetica": [4, 6, 7], "henc": 6, "here": [0, 2, 3, 4, 5, 6, 7], "hidden": 6, "high": [4, 5, 6, 7], "higher": [4, 5], "highest": 1, "highlight": [4, 5], "hillshad": [3, 5], "hing": 5, "histogram": 0, "histori": [1, 2, 3, 4, 5, 6, 7], "histtyp": 2, "hood": 6, "horizont": [1, 5], "hour": 7, "hover": 0, "how": [0, 1, 3, 4, 5], "howat": 5, "howev": [5, 7], "hp": 5, "hriver": 2, "html": [0, 1, 5], "http": [0, 1, 2, 3, 4, 5, 6, 7], "hub": 5, "hue": 5, "hui": [0, 1, 4], "hypocentr": [2, 4], "i": [0, 1, 2, 4, 5, 7], "i30": 5, "i5m": 4, "i600": 5, "i_riv": 2, "ian": 5, "icon": 0, "id": 5, "idea": [4, 7], "ideal": [1, 6], "ident": [6, 7], "identifi": 5, "illumin": [4, 5, 6], "illus": 6, "imag": [1, 2, 4], "img_dpi": [2, 4], "impact": 1, "import": [2, 3, 4, 5, 6], "importantli": 4, "inc": 6, "inch": 6, "includ": [3, 4, 6, 7], "income_pc": 2, "increas": [1, 6, 7], "increment": 6, "indent": 1, "index": [1, 2, 4, 5], "indic": [2, 4], "individu": 4, "inform": [1, 2, 4], "input": [4, 7], "insert": 2, "insid": [0, 6], "instal": 0, "instead": [5, 6, 7], "instruct": 0, "int64": 5, "int640crs_wkt": 5, "int641": 5, "integ": [5, 6], "integr": [0, 3], "intend": 0, "intens": 7, "interact": [0, 3], "intercomparison": 3, "interest": [1, 2, 3, 4, 5], "interpol": 4, "interpret": 5, "interv": [1, 4], "introduc": [4, 6], "invis": [1, 7], "io": [2, 5], "ipynb": [0, 5], "iri": [1, 3], "iridl": 3, "isel": [3, 5], "island": 5, "issu": [1, 2, 3, 4, 5, 6, 7], "item": 5, "its": [1, 3, 7], "itself": 2, "j": [1, 5, 6, 7], "januari": 7, "japan": 2, "japan_quak": [0, 2], "jbc": 1, "jg": 6, "jg0": 6, "ji": [0, 5], "jing": [0, 1, 4], "jlm": 2, "jn": 7, "jn14c": 7, "jone": [0, 3], "jong": 5, "json": 5, "jtl": 2, "june": 5, "jupyt": [0, 1, 2, 4], "just": [1, 2, 3, 4, 5, 6, 7], "justif": 1, "k": 6, "keep": [2, 4, 6], "kei": [1, 6], "kenwood": 2, "kilomet": 4, "kind": [1, 2, 3, 4, 5, 6, 7], "km": [1, 3, 4, 5], "kwarg": 3, "kwargs_to_str": 3, "kwdict": 3, "l": [1, 6, 7], "l2a": 5, "lab": [0, 2], "label": [1, 2, 3, 4, 5, 6, 7], "lake": 2, "land": [1, 2, 4], "landscap": 5, "larg": [1, 2], "laser": 5, "last": 3, "lat": [1, 4, 5], "lat0": 1, "lat1": 1, "lat2": 1, "lat_max": 4, "lat_min": 4, "later": [5, 6, 7], "latest": 0, "latitud": [1, 2, 4, 6, 7], "latitude_of_origin": 5, "latitudeaxi": [4, 5], "latitudeunit": [4, 5], "latpandasindexpandasindex": [4, 5], "launch": 0, "layer": [1, 5], "layerid": 5, "layout": 0, "lc0": 7, "lcount": 2, "ldeo": 3, "ldistanc": 4, "learn": [1, 2, 4, 5, 6], "least": 6, "left": [0, 2, 5], "legend": [0, 2], "lelev": [1, 4, 5], "len": 2, "len_limit": 2, "length": [1, 4, 5], "leong": [0, 5], "let": [2, 3, 5], "letter": [1, 5], "level": [3, 4], "lexic": 6, "lhypocentr": [2, 4], "liam": 1, "lib": 3, "libcurl": 3, "librari": [0, 2, 3], "lidar_to_surfac": 5, "light": [3, 5], "lightblu": [1, 4], "lighter": 7, "lightgrai": 4, "like": [1, 2, 3, 5, 6, 7], "lim_mag": 4, "limit": [2, 4], "lin": 1, "line": [0, 1, 3, 4], "link": 0, "list": [0, 1], "littl": 7, "lkm": [2, 4], "ll": [3, 5], "llabel": 5, "lm": [2, 4, 5], "lmeter": 5, "lmoment": 2, "lng": 5, "load": [1, 2, 5], "load_earth_ag": 1, "load_earth_relief": [1, 3], "load_mars_relief": 5, "load_remote_dataset": 3, "load_sample_data": 2, "loadtxt": 4, "loc": 2, "local": 3, "localhost": 0, "locat": [3, 4, 5], "log10": 4, "logarithm": 4, "lon": [1, 4, 5], "lon0": 1, "lon_max": 4, "lon_min": 4, "long": 6, "long_nam": [4, 5], "longer": [2, 3], "longitud": [1, 2, 4, 6, 7], "longitudeaxi": [4, 5], "longitudeunit": [4, 5], "lonpandasindexpandasindex": [4, 5], "look": [1, 2, 4, 5, 6], "loop": 6, "low": [4, 7], "lower": [1, 4, 5], "lowest": 1, "lpopul": 2, "lriver": 2, "lseafloor": 1, "lset": 3, "lt": [4, 5], "lucki": 2, "lui": [6, 7], "lunch": 6, "m": [0, 1, 2, 4, 5, 6, 7], "m0": 6, "m10c": [1, 2, 4], "m12c": [3, 5], "ma": 1, "made": [5, 6], "mag": 4, "mag_max": 2, "mag_min": 2, "magnifi": 7, "magnitud": [2, 4, 7], "mai": [1, 2, 5, 6], "main": [5, 6, 7], "mainscript": 6, "maintain": 5, "make": [0, 1, 2, 3, 5], "makecpt": [0, 2, 3, 4, 5, 7], "maker": 6, "mamba": 0, "manag": 0, "managua": 5, "manual": 4, "map": [0, 3, 6, 7], "mapzen": 5, "marin": 1, "mark": [1, 4, 5], "marker": 1, "mars_relief": 0, "mars_relief_01d_g": 5, "mars_relief_30s_g": 5, "martian": 5, "mass": [4, 6, 7], "master": [1, 2, 3, 4, 5], "match": 5, "match_data_arrai": 5, "materi": 0, "max": [0, 2, 3, 4, 6], "maximum": 4, "maxlatitud": 4, "maxlongitud": 4, "mayb": 6, "mc": [1, 4, 7], "mcmurdo": 5, "mean": [1, 4, 5], "measur": [4, 5], "meca": [0, 4], "mechan": 4, "meet": [1, 2, 3, 4, 5, 6, 7], "meetingapp": [1, 2, 3, 4, 5, 6, 7], "memori": 3, "mercat": 1, "merg": 5, "merge_arrai": 5, "meter": [2, 5], "metersxarrai": 5, "method": [1, 5, 6], "metr": 5, "metrearrai": 5, "mf": 7, "mi1": 7, "micromamba": 3, "microsoft": 5, "mid": 1, "might": [1, 4], "mile": 5, "min": [1, 2, 4, 6], "ming": 1, "miniconda": 0, "minim": 1, "minimum": 4, "minlatitud": 4, "minlongitud": 4, "minmagnitud": 4, "minu": 6, "minut": [1, 4, 6], "ml": 7, "mode": [3, 6], "model": 3, "moder": 5, "modern": 6, "modifi": [2, 7], "modul": [3, 6], "module_func": 3, "mola": 5, "mollweid": 5, "moment": 2, "mon": 5, "month": [2, 7], "more": [1, 2, 3, 4, 5, 6, 7], "morin": 5, "most": [3, 5, 6], "motion": [4, 6], "move": [4, 6], "movi": [0, 7], "movie_col0": [6, 7], "movie_col1": 6, "movie_colk": 6, "movie_dpu": 6, "movie_fram": 6, "movie_height": 6, "movie_nam": 6, "movie_nfram": 6, "movie_r": 6, "movie_tag": 6, "movie_text": 6, "movie_width": [6, 7], "movie_wordw": 6, "mp4": 6, "ms5": 7, "mt": 7, "much": 7, "multi": 3, "multidigraph": 2, "multilinestr": 2, "must": [1, 4, 5, 6, 7], "mv": 7, "myoung": 5, "n": [1, 3, 4, 5, 6, 7], "n00w165": 5, "n00w180": 1, "n_column": [1, 4], "n_row": [1, 4], "naa": 5, "name": [0, 1, 2, 3, 4, 5, 6, 7], "nan": [2, 4], "nasa": 5, "nation": 2, "natur": 5, "navia": 2, "navig": 1, "nc": 3, "ncol": 1, "ndarrai": 4, "ndescript": 5, "nearth": 6, "need": [1, 2, 4, 5, 6, 7], "netcdf": [1, 3, 4], "netcdf_fil": 3, "neumann": 5, "new": [1, 4, 6, 7], "new_modul": 3, "newcolnam": 4, "newvalu": 3, "next": [4, 5], "nf": [1, 4], "no_clip": 4, "noaa": 3, "nodc": 3, "node": [1, 4], "noh": 5, "non": 6, "none": [2, 3, 7], "normal": [1, 7], "north": [4, 5], "northwest": 5, "note": [2, 4, 5, 7], "notebook": [0, 1, 2, 4], "notic": [1, 3, 5], "novemb": [1, 2, 3, 4, 5, 6, 7], "now": [0, 1, 2, 4, 5, 6, 7], "np": 4, "nquak": 7, "nrow": 1, "ntnue": 1, "num_crim": 2, "num_spot": 2, "num_theft": 2, "number": [1, 5], "numpi": [0, 4], "nx": 5, "ny": 5, "nz": 5, "o": [4, 5], "o0": 2, "oakland": 2, "object": [2, 3, 6, 7], "obscur": 5, "observ": 4, "obspi": 4, "obtain": 3, "occur": 7, "occurr": [6, 7], "ocean": 4, "oceania": [1, 5], "oct": 5, "off": 5, "offici": 0, "offset": [2, 4, 6], "often": 5, "ogr": 2, "ok": 6, "oleron": [3, 4, 5], "olympu": 5, "omon": 3, "onc": [0, 1, 5, 6, 7], "one": [1, 3, 5, 6, 7], "ones": 5, "onli": [1, 2, 4, 6, 7], "onlin": [0, 5], "onto": [1, 5], "opaqu": 7, "open": [0, 1, 2, 4, 5, 6, 7], "open_dataset": 3, "open_rasterio": 5, "open_zarr": 3, "opendata": 5, "optic": 5, "optim": 5, "option": [4, 6, 7], "orang": [2, 4], "orbit": 5, "order": [3, 4, 6], "org": [0, 1, 2, 3, 4, 5, 6, 7], "origin": [1, 3, 4, 7], "oslo": 2, "osmnx": 2, "other": [1, 2, 4, 5, 6], "otherwis": 4, "our": [2, 4, 5], "out": 3, "outgrid": [1, 3], "outlin": [2, 4], "output": [1, 3, 4, 6], "outsid": [0, 4, 6], "over": [0, 5, 6], "overal": 1, "overlai": 1, "overlaid": 5, "overview_level": 5, "ovr_resampling_alg": 5, "own": [3, 4], "p": [2, 4, 6, 7], "p0": [2, 4], "packag": [0, 1, 2, 3, 4], "page": 0, "pai": 5, "palett": 1, "pan": 5, "panda": [0, 4], "pane": 0, "panel": [3, 4], "paper": [6, 7], "parallel": 1, "paramet": [2, 4, 5, 7], "park": 2, "part": [1, 2, 3, 4, 5, 6, 7], "partial": 6, "pass": [1, 2, 3, 4, 5], "path": [0, 3, 4], "pattern": 5, "paul": 5, "pd": 4, "pdf": 1, "peer": 3, "pen": [2, 4], "per": [5, 6, 7], "perspect": [1, 5, 6], "pgc": 5, "phase": [3, 7], "pixel": 6, "place": [2, 7], "plai": [1, 2, 3, 4, 5, 6, 7], "plain": 1, "plane": 1, "planet": 5, "planetari": 0, "planetarycomput": 5, "planetarymap": 5, "plate": 4, "plateau": 7, "pleas": [0, 1, 2, 3, 4, 5, 6, 7], "plot": [0, 1, 5, 6, 7], "plot_latitud": 4, "plot_longitud": 4, "plu": [4, 5], "png": [1, 6, 7], "point": [1, 2, 4, 6], "polar": [1, 5], "polar_stereograph": 5, "polar_stereographicstandard_parallel": 5, "polargeospatialcent": 5, "pole": 1, "polygon": 4, "pop": 5, "popul": 2, "popul_max": 2, "popul_min": 2, "porter": 5, "posit": [1, 2, 4, 7], "possibl": [5, 6, 7], "postscript": 6, "potenti": 6, "power": 5, "practic": 5, "pre": [0, 1, 2, 3, 4, 5, 6, 7], "precis": 6, "prefer": 0, "prefix": [3, 6], "preserv": 1, "preset": 6, "preview": 5, "previou": [1, 6, 7], "prews9": [1, 2, 3, 4, 5, 6, 7], "price_pp": 2, "primem": 5, "print": [1, 2, 4], "prior": 6, "probabl": [1, 6], "process": [5, 6, 7], "profil": 2, "program": 1, "progress": 7, "projc": 5, "project": [0, 2, 3, 5, 6], "projection_x_coordinateunit": 5, "projection_y_coordinateunit": 5, "projectionstandard_nam": 5, "prompt": 0, "proper": 5, "properli": 6, "properti": 7, "provid": [1, 2, 3, 4, 5, 6, 7], "ps_page_color": 5, "public": [2, 4], "pull": [1, 2, 3, 4, 5, 6, 7], "puls": 5, "purpos": [1, 6, 7], "put": 0, "py": 3, "pygmt": [2, 5, 6, 7], "python": [0, 1], "python3": 3, "quadrant": 4, "quak": 7, "quakes_2018": [0, 7], "qualiti": [5, 6, 7], "quantiti": 2, "question": [1, 2, 3, 4, 5, 6, 7], "quicken": 3, "quit": 6, "quot": 5, "r": [1, 3, 4, 5, 6, 7], "r12c": 3, "r15c": 3, "r1i1p1f1": 3, "r2": 7, "radianc": 3, "radiantearth": 5, "rais": 3, "rake": 4, "ran": 0, "rang": [1, 2, 4, 5], "rapid": 6, "raster": [5, 6], "rate": 6, "rather": 3, "re": [0, 1, 5], "read": [3, 4], "read_csv": 4, "read_fil": 2, "readabl": 1, "readi": [0, 4], "realism": 5, "reason": 6, "receiv": 3, "recent": 3, "recommend": [0, 1, 2, 3, 4, 5, 6, 7], "record": 6, "recreat": 6, "red": 4, "reddish": 5, "reduc": [1, 3, 5, 6, 7], "refer": [1, 2, 4, 5], "refin": [5, 6], "reflect": 3, "regard": 2, "region": [1, 2, 3, 4, 5], "registr": [1, 3, 4], "registri": 5, "regular": [0, 5], "rel": 5, "reli": 6, "relief": [1, 3, 6, 7], "relieflong_nam": 5, "rema": 5, "remain": 7, "remark": [1, 4], "remot": [1, 3, 4, 5, 6], "remov": 6, "render": [0, 5], "rental": 2, "repeat": [6, 7], "report": [1, 2, 3, 4, 5, 6, 7], "repositori": [0, 4], "repres": [2, 4, 5, 6], "reproject_match": 5, "request": [1, 2, 3, 4, 5, 6, 7], "requir": [0, 2, 4, 6, 7], "requisit": 0, "research": 5, "reset": 5, "resolut": [1, 2, 3, 4, 5, 6, 7], "resourc": [1, 5, 6], "respect": 4, "response_r": 2, "result": [3, 6, 7], "retriev": [4, 5], "return": [3, 7], "rev_rat": 2, "reveal": 5, "revers": [2, 4], "rg": [5, 7], "rgb_imag": 5, "rgb_mosaic": 5, "rich": 3, "richard": 4, "right": [0, 2], "rio": 5, "rioxarrai": [0, 5], "rise": 7, "rive": 2, "rltb": [2, 4], "road": 2, "rocket": 0, "room_typ": 2, "rose": 1, "ross": 5, "rotat": [5, 6], "rough": [2, 4, 5], "row": [1, 2, 6], "run": [1, 3, 4, 7], "s0": 4, "s2": 5, "s2b_58ceu_20241109_0_l2a": 5, "s2b_58cev_20241109_0_l2a": 5, "s2l2a": 5, "s3": 5, "sai": 0, "same": [1, 3, 4, 6, 7], "sampl": [1, 3, 4], "satellit": 5, "satisfi": 5, "save": 1, "sb": 7, "sbpre": 7, "scale": [1, 2, 4, 5], "scale_factor": [1, 4, 5], "scatter": 0, "scenariomip": 3, "scene": 5, "scharroo": [6, 7], "scientif": [0, 4, 6], "scm": [2, 3, 4, 5], "scott": 5, "script": [0, 1, 6], "se": 7, "sea": [3, 4], "seafloor": 1, "sealevelchang": 3, "search": 5, "second": [1, 2, 4, 5], "section": [2, 3, 4, 6], "see": [0, 1, 2, 4, 5], "seem": 1, "seen": 7, "seismicity_2022": 4, "seismologi": 0, "sel": 3, "select": [0, 6], "self": 3, "semi": 2, "semi_major_axi": 5, "sens": 6, "sentinel": [0, 5], "senw": 1, "sequenc": 6, "sequenti": 6, "seri": [1, 2, 3, 4, 6], "serv": 6, "server": [1, 3, 5], "session": [0, 1, 2, 3, 4, 5, 6, 7], "session_point": 3, "set": [1, 2, 3, 4, 5, 7], "seton": 1, "setup": 5, "sever": [2, 5], "sh": [6, 7], "shade": [4, 5], "shadow": 5, "shape": [1, 2], "shape_area": 2, "shape_len": 2, "shape_leng": 2, "shapefil": 2, "share": 3, "shell": 6, "shift": [1, 4], "shift_origin": 4, "shipset": [2, 4], "shorelin": [1, 2], "short": 6, "shortcut": 1, "shorter": 2, "should": [0, 4, 7], "show": [1, 3, 5, 6, 7], "showcas": 5, "shown": 7, "shp": 2, "side": [2, 5, 6], "sign": 6, "similar": [2, 7], "simplifi": [3, 6], "simul": 5, "sinc": 3, "singl": [1, 6], "site": 3, "size": [1, 2, 4, 5, 6, 7], "small": [1, 2, 4, 6], "smaller": 5, "smith": [5, 6, 7], "so": [0, 1, 2, 4, 5, 6, 7], "socioeconom": 2, "soft": 5, "softwar": 6, "solid": [2, 4], "some": [1, 2, 3, 4, 5, 6], "sometim": 4, "sort": 7, "sourc": [3, 5, 6], "south": 5, "south_america_topography_05m": 4, "southeast": 5, "space": [2, 4, 6], "span": 5, "spatial": [4, 5], "spatial_ref": 5, "spatiotempor": 5, "spec": 4, "specif": [0, 1, 3, 4, 5], "specifi": [1, 2, 3, 4, 6], "speed": [3, 4, 6], "spheroid": 5, "split": [2, 4], "squar": 6, "squeez": 3, "sr": 5, "srtm15": [1, 3], "ssp585": 3, "stac": 5, "standard": [1, 6], "star": 4, "start": [0, 2, 4, 5, 6, 7], "start_i": 4, "start_x": 4, "starttim": 4, "state": 2, "static": [3, 7], "station": 5, "statu": 3, "steelblu": 2, "steep": 5, "step": [4, 7], "step_histo": 2, "stereograph": 5, "stereographicgrid_mapping_nam": 5, "still": 6, "storag": 3, "store": [1, 2, 3, 4], "straight": 4, "strike": 4, "string": [2, 6], "structur": 5, "studi": [2, 4], "style": [2, 4], "subduct": 4, "subplot": 0, "subregion": 2, "subsect": 4, "subset": [3, 4], "subsiz": 1, "substanti": 5, "subtl": 5, "suffix": 1, "suitabl": [1, 2, 4], "summer": 1, "sun": 5, "suppli": 6, "support": [1, 2], "sure": 0, "surfac": [3, 5], "surftyp": 5, "survei": 4, "svga": 6, "switch": 5, "sxga": 6, "symbol": 4, "syntax": 6, "system": [1, 2, 5], "t": [1, 4, 5, 6, 7], "t0": 7, "t1": 4, "t10": 6, "t2": 4, "t2018": 7, "t360": 6, "t_an": 3, "tab": 1, "tabl": [1, 6], "tabular": [0, 4], "take": [0, 3, 4, 6, 7], "taken": 5, "task": 6, "tc": 5, "tci": 5, "techniqu": 6, "tell": 5, "temperatur": [0, 3], "temporari": [6, 7], "temporarili": 7, "tend": 0, "termin": 0, "terrain": 5, "text": [0, 2, 4, 6], "than": [3, 6], "thei": [0, 6, 7], "them": [2, 5, 6, 7], "theme": 5, "themeid": 5, "therefor": [1, 2, 4], "thi": [0, 1, 2, 3, 4, 5, 6, 7], "thick": [2, 4], "thing": [1, 5], "those": [3, 6], "through": [0, 3, 5], "throughout": 3, "tian": [6, 7], "tick": 5, "tif": 5, "tile": [1, 3, 5], "tile_17_33": 5, "tile_17_34": 5, "tile_58ceu": 5, "tile_58cev": 5, "tilt": 5, "time": [0, 2, 3, 4, 6, 7], "time_unit": 7, "timefil": 6, "tip": 5, "titl": [1, 4, 5], "tmin": 6, "tnumber": 6, "to_cr": 2, "togeth": [4, 5], "token": [0, 3], "tolympu": 5, "tonei": 1, "tong": [0, 1, 4], "too": 1, "tool": [0, 1, 2, 3, 4, 5, 6, 7], "top": [0, 1, 2, 4, 5], "topograph": [1, 4], "topographi": 0, "total": 6, "totim": 5, "tozer": [1, 3], "traceback": 3, "track": 4, "track_df": 4, "trail": 6, "transform": 2, "transpar": [2, 4, 7], "tripel": 3, "trivial": 6, "troubleshoot": 6, "true": [1, 2, 3, 4, 5], "try": 4, "ttimefil": 6, "tut01_firstfigur": 0, "tut02_spe_pd_gpd": 0, "tut03_spe_xarrai": 0, "tut04_geophys": 0, "tut05_topographi": 0, "tut06_anim": 0, "twice": 4, "two": [2, 4, 5, 6, 7], "txt": [4, 7], "type": [2, 4], "typic": 5, "u": [2, 5, 6], "u2fsdgvkx1": 5, "uhd": 6, "uieda": [6, 7], "uint8": 5, "umn": 5, "unabl": 3, "under": 6, "understand": 6, "unemploi": 2, "unfold": 7, "unit": [1, 4, 5, 6], "unit05": 1, "unlock": 3, "until": 7, "up": [1, 2, 4, 5, 6, 7], "updat": 6, "upper": 1, "url": 3, "us": [0, 1, 2, 4, 7], "usa": 3, "usabl": 2, "use_srtm": 3, "user": [0, 1, 6], "usg": 4, "usual": 5, "utc": 4, "utcdatetim": 4, "uxga": 6, "v": [1, 2, 4, 5, 6, 7], "v0": [1, 2, 3, 4, 5], "v1": 5, "v2": [1, 3, 5], "v20180701": 3, "v_max": [1, 4], "v_min": [1, 4], "valu": [1, 2, 4, 5, 6, 7], "vari": [2, 4], "variabl": [1, 6], "variat": [4, 6], "vector": [2, 3, 4], "verbos": 6, "veri": [5, 6], "version": [1, 2, 3, 4, 5, 6, 7], "vertic": [1, 2, 5], "vfname": 3, "via": [0, 1, 2, 3, 4, 5, 6, 7], "video": [6, 7], "view": 0, "viewer": [1, 5], "viewpoint": 5, "vik": 3, "virtual": 0, "virtualfile_out": 3, "virtualfile_to_rast": 3, "visibl": [5, 7], "visit": 5, "visual": [2, 3, 4, 6, 7], "visualizationurl": 5, "volcano": 5, "voutgrd": 3, "w": [1, 5, 6, 7], "w10c": 1, "w12c": 5, "w4": 4, "w6c": 1, "w8c": 1, "wa": [4, 5, 6, 7], "wai": [1, 6], "wait": 6, "want": [0, 1, 2, 3, 4, 6, 7], "warn": 5, "washington": 3, "water": [1, 4], "we": [0, 1, 2, 3, 4, 5, 6, 7], "webm": 6, "websit": [0, 1, 2, 3, 4, 5, 6, 7], "wei": [0, 5], "welcom": 0, "well": 7, "were": [4, 5, 6], "wessel": [6, 7], "west": [3, 5], "wg": 5, "wgs_1984": 5, "what": [1, 4, 7], "when": [2, 3, 4, 5, 7], "where": [0, 1, 5, 6], "which": [0, 1, 2, 3, 4, 5, 6, 7], "while": [1, 4, 5, 6], "white": [2, 4, 5, 6, 7], "whiten": 7, "whole": [3, 6], "width": [1, 2, 3, 4, 5, 6], "widthxheightxdpu": 6, "window": [0, 6], "winkel": 3, "wise": 2, "wise_large_riv": 2, "within": [1, 2, 4, 7], "without": [1, 4, 5, 7], "without_h": 2, "woa09": 3, "woa_temp": 3, "wobb": [6, 7], "word": 6, "work": [3, 5, 6, 7], "workshop": [0, 1, 2, 3, 4, 5, 6, 7], "world": [1, 3, 5], "worldwid": 7, "would": 6, "write": [1, 6], "written": 6, "wsne": [1, 2, 5], "wsrt": 4, "www": [0, 1, 2, 3, 4, 5, 6, 7], "x": [1, 2, 4, 5, 6, 7], "x0": [4, 6, 7], "x10c": [2, 4], "x27": [4, 5], "x50": 7, "x_inc": [1, 4, 5], "x_max": [1, 4], "x_min": [1, 4, 5], "xa0": 3, "xa100f50": 2, "xa2000f1000": 4, "xa500f250": 4, "xactual_rang": 4, "xaf": 5, "xarrai": [0, 4, 5], "xga": 6, "xlong_nam": 5, "xmax": [1, 5], "xmin": [1, 5], "xpandasindexpandasindex": 5, "xr": 3, "xyz2grd": 0, "y": [1, 2, 4, 5, 6, 7], "y0": [6, 7], "y_inc": [1, 4, 5], "y_max": [1, 4], "y_min": [1, 4, 5], "ya0": 3, "ya2500": 4, "yactual_rang": 4, "yaf": 5, "yarrai": 5, "year": [2, 6, 7], "ylong_nam": 5, "ymax": [1, 5], "ymin": [1, 5], "yml": 0, "you": [0, 1, 2, 3, 4, 5, 6, 7], "your": [2, 3, 4, 5, 6], "ypandasindexpandasindex": 5, "yshift": 4, "yvonn": [0, 2, 4], "z": [1, 2, 4, 5, 6, 7], "z5000": 5, "zactual_rang": 4, "zip": 2, "zmax": 5, "zmin": 5, "zo": 3, "zone": 4, "zos_2015jan": 3, "zos_2100dec": 3, "zscale": 5, "zsh": 6, "zsize": 5, "zuber": 5, "zunit": 5, "zvalu": 2}, "titles": ["Mastering Geospatial Visualizations with GMT/PyGMT", "Tutorial 1 - First figure \ud83d\ude80 and Subplots / layout", "Tutorial 2 - scientific Python ecosystem \ud83d\udc0d: pandas and GeoPandas (tabular data \ud83d\uddd2\ufe0f)", "Tutorial 3 - scientific Python ecosystem \ud83d\udc0d: Xarray (gridded data \ud83c\udf10)", "Tutorial 4 - Geophysics (Seismology) \ud83c\udf0e\ud83c\udf0f\ud83c\udf0d", "Tutorial 5 - 3-D Topography (Planetary / Antarctic maps) \ud83c\udfd4\ufe0f", "Tutorial 6 - Animations with GMT \ud83c\udfa6", "Tutorial 6 - Animations with GMT \ud83c\udfa6 (extended)"], "titleterms": {"0": [1, 2, 3, 4, 5], "1": [1, 2, 3, 4, 5, 6, 7], "2": [1, 2, 3, 4, 5, 6, 7], "3": [1, 2, 3, 4, 5, 6, 7], "4": [1, 2, 3, 4, 6, 7], "5": [1, 3, 4, 5, 6, 7], "6": [3, 4, 6, 7], "The": [6, 7], "ad": 1, "add": [1, 4], "addit": [2, 4], "along": 4, "also": [6, 7], "an": 6, "anim": [6, 7], "antarct": 5, "approach": 1, "attempt": [6, 7], "background": 7, "basic": 1, "beachbal": 4, "canva": [1, 6], "cartesian": [2, 4], "choos": 4, "choropleth": 2, "cloud": 3, "coast": 1, "coastlin": 1, "code": 2, "color": [1, 2], "colorbar": 1, "comment": [2, 4], "contour": 4, "creat": [0, 1, 2, 4], "custom": 1, "d": 5, "data": [2, 3, 4, 5], "datafram": 2, "dataset": 1, "dem": 5, "differ": 2, "digit": 5, "directli": 3, "download": [1, 3], "draft": [6, 7], "drape": 5, "draw": 1, "earth": 6, "earthquak": [6, 7], "ecosystem": [2, 3], "element": 1, "elev": [4, 5], "enhanc": 7, "environ": 0, "epicent": 2, "event": 7, "extend": 7, "featur": 4, "figur": [1, 4], "first": [1, 6, 7], "fix": 6, "frame": [1, 6, 7], "from": 3, "full": [6, 7], "gener": [2, 4], "geodatafram": 2, "geograph": 2, "geometri": 2, "geopanda": 2, "geophys": 4, "geospati": 0, "get": [3, 5], "global": 1, "gmt": [0, 1, 6, 7], "goal": [6, 7], "grdcontour": 4, "grdimag": 1, "grdtrack": 4, "grdview": 5, "grid": [1, 3, 4], "histogram": 2, "how": [6, 7], "i": [3, 6], "imag": [5, 6, 7], "imageri": 5, "import": 1, "inform": [6, 7], "introduct": 6, "last": 7, "layout": 1, "length": 2, "line": 2, "load": 3, "local": 0, "make": [6, 7], "makecpt": 1, "map": [1, 2, 4, 5], "mar": 5, "master": [0, 6, 7], "model": 5, "modul": 7, "mosaic": 5, "movi": 6, "multi": 1, "number": 6, "open": 3, "orient": [2, 4], "overview": 0, "panda": 2, "panel": 1, "paramet": 6, "planetari": 5, "plot": [2, 3, 4], "polygon": 2, "prepar": 4, "prerequisit": 6, "process": 3, "profil": 4, "project": [1, 4], "pygmt": [0, 1, 3, 4], "python": [2, 3], "raster": 3, "refer": [6, 7], "relief": 5, "rgb": 5, "river": 2, "run": 0, "scatter": 2, "scientif": [2, 3], "script": 7, "second": [6, 7], "see": [6, 7], "seismic": 4, "seismologi": 4, "set": [0, 6], "set_panel": 1, "show": [2, 4], "spatial": 2, "spin": 6, "stack": 1, "start": [1, 3], "step": 6, "stuff": [2, 4], "subplot": 1, "subset": 2, "suggest": [2, 4], "symbol": 7, "tabular": 2, "technic": [6, 7], "third": 7, "tick": 1, "topographi": 5, "tutori": [0, 1, 2, 3, 4, 5, 6, 7], "type": [1, 6], "up": 0, "us": [3, 5, 6], "view": 5, "visual": [0, 1, 5], "what": [3, 6], "why": [3, 6], "xarrai": 3, "xyz2grd": 4, "your": [0, 1], "zoom": 5}}) \ No newline at end of file +Search.setIndex({"alltitles": {"0.1 2-D map view": [[5, "d-map-view"]], "0.2 Zoomed in view": [[5, "zoomed-in-view"]], "0\ufe0f\u20e3 General stuff": [[2, "general-stuff"], [4, "general-stuff"]], "0\ufe0f\u20e3 Importing": [[1, "importing"]], "0\ufe0f\u20e3 Mars relief data": [[5, "mars-relief-data"]], "0\ufe0f\u20e3 What is Xarray?": [[3, "what-is-xarray"]], "1.1 Drawing coastline \u2013 pygmt.Figure.coast": [[1, "drawing-coastline-pygmt-figure-coast"]], "1.1 Tabular data - pandas.DataFrame": [[2, "tabular-data-pandas-dataframe"]], "1.1. What is an Animation?": [[6, "what-is-an-animation"]], "1.2 Coloring and add map element (frame and ticks)": [[1, "coloring-and-add-map-element-frame-and-ticks"]], "1.2 Create a Cartesian histogram": [[2, "create-a-cartesian-histogram"]], "1.2. How to Make an Animation": [[6, "how-to-make-an-animation"]], "1.3 Create a geographical map showing the epicenters (scatter plot)": [[2, "create-a-geographical-map-showing-the-epicenters-scatter-plot"]], "1.3 Stacking approach of GMT / PyGMT": [[1, "stacking-approach-of-gmt-pygmt"]], "1.3. Why use GMT for animations?": [[6, "why-use-gmt-for-animations"]], "1.4. Types of animations in GMT": [[6, "types-of-animations-in-gmt"]], "1.5. Prerequisites": [[6, "prerequisites"]], "1\ufe0f\u20e3 Prepare gridded data: pygmt.xyz2grd": [[4, "prepare-gridded-data-pygmt-xyz2grd"]], "1\ufe0f\u20e3 Starting your first figure \u2013 pygmt.Figure": [[1, "starting-your-first-figure-pygmt-figure"]], "1\ufe0f\u20e3 Using grdview for 3-D Visualization": [[5, "using-grdview-for-3-d-visualization"]], "1\ufe0f\u20e3 Why use Xarray with PyGMT": [[3, "why-use-xarray-with-pygmt"]], "1\ufe0f\u20e3 pandas": [[2, "pandas"]], "1\ufe0f\u20e3. Introduction": [[6, "introduction"]], "2.1 Getting a DEM mosaic": [[5, "getting-a-dem-mosaic"]], "2.1 Line geometry": [[2, "line-geometry"]], "2.1. Goals of the Tutorial": [[6, "goals-of-the-tutorial"]], "2.1.1 Spatial Data - geopandas.GeoDataFrame with line geometry": [[2, "spatial-data-geopandas-geodataframe-with-line-geometry"]], "2.1.2 Create a geographical map of the rivers": [[2, "create-a-geographical-map-of-the-rivers"]], "2.1.3 Plot subsets of the rivers differently": [[2, "plot-subsets-of-the-rivers-differently"]], "2.1.4 Plot the rivers with color-coding for the river length": [[2, "plot-the-rivers-with-color-coding-for-the-river-length"]], "2.2 Getting RGB imagery": [[5, "getting-rgb-imagery"]], "2.2 Polygon geometry": [[2, "polygon-geometry"]], "2.2. Make first image": [[6, "make-first-image"]], "2.2.1 Spatial Data - geopandas.GeoDataFrame with polygon geometry": [[2, "spatial-data-geopandas-geodataframe-with-polygon-geometry"]], "2.2.2 Create a choropleth map": [[2, "create-a-choropleth-map"]], "2.3. Make the Master Frame": [[6, "make-the-master-frame"]], "2.3.1. What is GMT movie?": [[6, "what-is-gmt-movie"]], "2.3.2. First Attempt": [[6, "first-attempt"]], "2.3.3. The Canvas": [[6, "the-canvas"]], "2.3.4. Second attempt. Fix the canvas": [[6, "second-attempt-fix-the-canvas"]], "2.4. Make draft animation": [[6, "make-draft-animation"]], "2.4.1. First attempt": [[6, "id1"]], "2.4.2. Movie Parameters": [[6, "movie-parameters"]], "2.4.3. How to set the number of Frames": [[6, "how-to-set-the-number-of-frames"]], "2.4.4. Second attempt. Use parameters": [[6, "second-attempt-use-parameters"]], "2.5. Make full animation": [[6, "make-full-animation"]], "2\ufe0f\u20e3 Antarctic Digital Elevation Model": [[5, "antarctic-digital-elevation-model"]], "2\ufe0f\u20e3 Create a contour map: pygmt.Figure.grdcontour": [[4, "create-a-contour-map-pygmt-figure-grdcontour"]], "2\ufe0f\u20e3 Downloading global dataset \u2013 pygmt.datasets": [[1, "downloading-global-dataset-pygmt-datasets"]], "2\ufe0f\u20e3 GeoPandas": [[2, "geopandas"]], "2\ufe0f\u20e3 Getting started": [[3, "getting-started"]], "2\ufe0f\u20e3. Tutorial 1. Earth spinning": [[6, "tutorial-1-earth-spinning"]], "3.1 Choose a profile": [[4, "choose-a-profile"]], "3.1 Customizing colorbar \u2013 pygmt.makecpt": [[1, "customizing-colorbar-pygmt-makecpt"]], "3.1. Goals of the Tutorial": [[7, "goals-of-the-tutorial"]], "3.2 Adding pygmt.Figure.colorbar": [[1, "adding-pygmt-figure-colorbar"]], "3.2 Make image": [[7, "make-image"]], "3.2 pygmt.project": [[4, "pygmt-project"]], "3.3 pygmt.grdtrack": [[4, "pygmt-grdtrack"]], "3.3. Make master frame": [[7, "make-master-frame"]], "3.3.1. First attempt (first frame)": [[7, "first-attempt-first-frame"]], "3.3.2. The events module": [[7, "the-events-module"]], "3.3.3. Second attempt (first frame with events)": [[7, "second-attempt-first-frame-with-events"]], "3.3.4. Third attempt (last frame with events)": [[7, "third-attempt-last-frame-with-events"]], "3.4 Create a Cartesian plot showing the elevation along the profile": [[4, "create-a-cartesian-plot-showing-the-elevation-along-the-profile"]], "3.4. Make draft animation": [[7, "make-draft-animation"]], "3.4.1. First attempt": [[7, "first-attempt"]], "3.4.2. The background script": [[7, "the-background-script"]], "3.4.3. Second attempt (with background script)": [[7, "second-attempt-with-background-script"]], "3.5. Make full animation": [[7, "make-full-animation"]], "3.6. Make full animation with enhancement": [[7, "make-full-animation-with-enhancement"]], "3.6.1. How to enhance symbols with events": [[7, "how-to-enhance-symbols-with-events"]], "3.6.2. Make full animation": [[7, "id2"]], "3\ufe0f. Tutorial 2. Earthquakes": [[7, "tutorial-2-earthquakes"]], "3\ufe0f\u20e3 Additional comments": [[2, "additional-comments"]], "3\ufe0f\u20e3 Create a profile plot: pygmt.project and pygmt.grdtrack": [[4, "create-a-profile-plot-pygmt-project-and-pygmt-grdtrack"]], "3\ufe0f\u20e3 Draping RGB image on 3-D topography": [[5, "draping-rgb-image-on-3-d-topography"]], "3\ufe0f\u20e3 Plotting raster data": [[3, "plotting-raster-data"]], "3\ufe0f\u20e3 Visualizing grid \u2013 pygmt.Figure.grdimage": [[1, "visualizing-grid-pygmt-figure-grdimage"]], "3\ufe0f\u20e3. Tutorial 2. Earthquakes": [[6, "tutorial-2-earthquakes"]], "4.1 Add a beachball": [[4, "add-a-beachball"]], "4.2 Add the seismicity": [[4, "add-the-seismicity"]], "4\ufe0f\u20e3 Add additional features": [[4, "add-additional-features"]], "4\ufe0f\u20e3 Creating multi-panel figures in a canvas \u2013 pygmt.Figure.subplot and pygmt.Figure.set_panel": [[1, "creating-multi-panel-figures-in-a-canvas-pygmt-figure-subplot-and-pygmt-figure-set-panel"]], "4\ufe0f\u20e3 Orientation / suggestion for \u201c2.1.4 Plot the rivers with color-coding for the river length\u201d": [[2, "orientation-suggestion-for-2-1-4-plot-the-rivers-with-color-coding-for-the-river-length"]], "4\ufe0f\u20e3 Processing raster data": [[3, "processing-raster-data"]], "4\ufe0f\u20e3. See also": [[6, "see-also"], [7, "see-also"]], "5\ufe0f. References": [[6, "references"]], "5\ufe0f\u20e3 Additional comments": [[4, "additional-comments"]], "5\ufe0f\u20e3 Basic projection types": [[1, "basic-projection-types"]], "5\ufe0f\u20e3 Download data and load with Xarray": [[3, "download-data-and-load-with-xarray"]], "5\ufe0f\u20e3. References": [[7, "references"]], "6\ufe0f\u20e3 Open data directly from the cloud": [[3, "open-data-directly-from-the-cloud"]], "6\ufe0f\u20e3 Orientation / suggestion for \u201c4.2 Add seismicity\u201d": [[4, "orientation-suggestion-for-4-2-add-seismicity"]], "Mastering Geospatial Visualizations with GMT/PyGMT": [[0, null]], "Step Goals:": [[6, null]], "Technical Information": [[6, null], [6, null], [6, null], [6, null], [7, null], [7, null], [7, null], [7, null], [7, null]], "Tutorial 1 - First figure \ud83d\ude80 and Subplots / layout": [[1, null]], "Tutorial 2 - scientific Python ecosystem \ud83d\udc0d: pandas and GeoPandas (tabular data \ud83d\uddd2\ufe0f)": [[2, null]], "Tutorial 3 - scientific Python ecosystem \ud83d\udc0d: Xarray (gridded data \ud83c\udf10)": [[3, null]], "Tutorial 4 - Geophysics (Seismology) \ud83c\udf0e\ud83c\udf0f\ud83c\udf0d": [[4, null]], "Tutorial 5 - 3-D Topography (Planetary / Antarctic maps) \ud83c\udfd4\ufe0f": [[5, null]], "Tutorial 6 - Animations with GMT \ud83c\udfa6": [[6, null]], "Tutorial 6 - Animations with GMT \ud83c\udfa6 (extended)": [[7, null]], "\ud83c\udf20 Setting up your environment": [[0, "setting-up-your-environment"]], "\ud83d\udcbb Creating a local environment for running tutorials": [[0, "creating-a-local-environment-for-running-tutorials"]], "\ud83d\udcda Overview of tutorials": [[0, "overview-of-tutorials"]]}, "docnames": ["intro", "tut01_firstfigure", "tut02_spe_pd_gpd", "tut03_spe_xarray", "tut04_geophysics", "tut05_topography", "tut06_animation", "tut06_animation_extended"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9}, "filenames": ["intro.md", "tut01_firstfigure.ipynb", "tut02_spe_pd_gpd.ipynb", "tut03_spe_xarray.ipynb", "tut04_geophysics.ipynb", "tut05_topography.ipynb", "tut06_animation.rst", "tut06_animation_extended.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 4, 5, 6], "0": [6, 7], "00": [3, 4, 5, 7], "000000": [2, 3, 4], "000000000": 3, "000001": 4, "000001descript": 3, "000002": 5, "0001": 5, "0005": 5, "000624": 4, "000z": 5, "001248": 4, "001871": 4, "002493": 4, "008333": 5, "00833333333333": 5, "008333333333333": 5, "01": [3, 4, 5, 7], "016666666666667": 5, "01666666666667": 5, "016667": 5, "0174532925199433": 5, "019e": 5, "01d": [3, 5], "01pointwidth": 3, "01t": 7, "01t00": 3, "02": [2, 3, 4, 5], "0212": 4, "025": 5, "02t02": 7, "02t08": 7, "03": [3, 4, 5], "03116445": 3, "03333333333333": 5, "033333333333333": 5, "037037": 2, "03arrai": [3, 5], "03descript": 3, "03m": 1, "03x03": 1, "04": [2, 3, 4], "0408": 2, "04166666666666": 5, "041666666666666": 5, "04321925": 3, "0442035": 3, "04772562": 3, "04773": 3, "05": [1, 2, 3, 5], "0522": 4, "0545098": 2, "0546": 3, "05481": 5, "058333333333334": 5, "05833333333334": 5, "05971": 2, "05axi": 5, "06": [2, 3, 4, 5, 7], "06209851": 3, "0637": 3, "064e": 3, "06666666666666": 5, "066666666666666": 5, "06841": 2, "06axi": 5, "07": 3, "074": 2, "07466871": 3, "075": 5, "075000000000001": 5, "08": [3, 4, 7], "0807": 2, "08333": 4, "083333": 4, "08333333": 4, "0833333333333": 4, "08333333333333333": 4, "083333333333336": 4, "08540": 3, "087288e": 2, "09": 3, "09469072": 3, "09t00": 5, "09t23": 5, "0_dem": 5, "0_fillvalu": 5, "0activity_id": 3, "0add_offset": 5, "0arrai": [3, 4, 5], "0axi": 3, "0branch_time_in_par": 3, "0c": 4, "0comment": 3, "0descript": 4, "0false_east": 5, "0false_north": 5, "0gridtyp": 3, "0long_nam": [3, 4, 5], "0modulu": 3, "0prime_meridian_nam": 5, "0semi_minor_axi": 5, "0spatial_ref": 5, "0straight_vertical_longitude_from_pol": 5, "0unit": 3, "0xarrai": 5, "1": 0, "10": [1, 2, 3, 4, 5, 6, 7], "100": [3, 7], "1000": [3, 4], "10000": 7, "102": 2, "1029": [5, 6, 7], "1032": 3, "1032coordin": 3, "1033": 4, "10432": 2, "1044": 4, "105263": 2, "108": 4, "1080": 6, "1080p": 6, "1083": 4, "1091": 4, "109k": 5, "10c": 1, "10p": 4, "11": [2, 3, 5, 6, 7], "110": 4, "1100": 3, "111d": 3, "112k": 3, "1132": 4, "114": 4, "116": 4, "117": [4, 5], "119": [2, 3], "12": [3, 4, 5, 6, 7], "1200": 3, "12039052": 3, "1204": 4, "1227859": 3, "124": 4, "1241": 2, "125": 3, "126": 4, "1261": 4, "1280": 6, "129": 4, "1298": 4, "12c": [1, 3], "12kb": 5, "13": [1, 2, 3, 4, 5, 6], "1300": 3, "1300000": 5, "1300016": 5, "1300048": 5, "1300080": 5, "1300112": 5, "1300144": 5, "1300176": 5, "1300208": 5, "1300240": 5, "1300272": 5, "1300304": 5, "130540": 4, "1306": 2, "131": 2, "132b": 3, "133": 5, "13370842": 3, "13383dd882d2variable_id": 3, "13383dd882d2version_id": 3, "1369712": 5, "1369744": 5, "1369776": 5, "1369808": 5, "1369840": 5, "1369872": 5, "1369904": 5, "1369936": 5, "1369968": 5, "1370000": 5, "1370016": 5, "13c": 6, "14": [2, 3, 5], "1400": 3, "141": [2, 4], "14100": 3, "142": 2, "1428": 2, "142857": 2, "145": 2, "146": 4, "149": 2, "14934": 2, "15": [1, 2, 3, 5], "150": [1, 2, 3, 4, 5], "1500": 3, "1500000": 2, "151": 5, "1510": 4, "152": 2, "1554": 2, "1561": 5, "1561lon": 5, "157": 1, "157895": 2, "1581": 2, "15x15": 5, "16": [2, 3, 5, 6, 7], "160": 6, "162452e": 2, "16666666666666666": 4, "16666666666667": 4, "16666667": 4, "166667": 4, "1667": 4, "167": 5, "1679062": 2, "1682737": 2, "169": 7, "16913961": 2, "16c": 4, "16mb": 5, "17": [3, 4, 5, 6], "170": 5, "1700097": 3, "171": [3, 5], "172": [3, 5], "173": [3, 5], "174": [3, 5], "175": [3, 5], "1750": 3, "176": [3, 5], "1764": 2, "177": [3, 5], "178": [3, 5], "17841": 2, "179": [3, 5], "17929687": 3, "17_33": 5, "17_33_32m_v2": 5, "17_34": 5, "17_34_32m_v2": 5, "17kb": 3, "18": [2, 3, 5, 7], "180": [1, 3, 5], "180bnd": 3, "180depth": 3, "181": [3, 5], "181lon": [3, 5], "18238": 2, "1846": 2, "1850": 3, "18c": 1, "18kb": 5, "18p": 7, "18t16": 3, "19": [3, 4, 5], "190": 4, "19049": 2, "1920": 6, "1923": 5, "1925": 5, "19252": 2, "1926": 5, "1928": 5, "1929": 5, "1931": 5, "1932": 5, "19565": 2, "1972": 3, "19724692": 3, "1983598": 3, "1984projected_crs_nam": 5, "1987": 2, "19916704": 2, "1_300_000": 5, "1_370_000": 5, "1c": [2, 4], "1d": 7, "1frequenc": 3, "1institut": 3, "1kb": [3, 5], "1mb": [3, 4], "1p": [1, 2, 4], "1parent_variant_label": 3, "1product": 3, "1realm": 3, "1unit": 3, "1x1": [3, 5], "2": 0, "20": [2, 3, 4, 5, 6, 7], "200": 3, "2000": 3, "200000": 2, "2003": 5, "2003gl017048": 5, "2008": 3, "2015": 3, "2018": [3, 6, 7], "2019": [1, 3, 5, 6, 7], "2019_0301": 3, "2019gc008515": [6, 7], "2020": [1, 2, 3, 4], "2021": 1, "2022": 4, "2023": 4, "2024": [1, 2, 3, 4, 5, 6, 7], "2024gc011545": [6, 7], "20474193": 3, "20481637": 3, "205k": 1, "2064": 3, "207a8ed": 3, "20921303": 3, "20kb": 5, "21": [2, 3, 5], "210": 1, "2100": 3, "21158722": 3, "2116arrai": 3, "2138400": 3, "2160": 6, "2160p": 6, "2188": 5, "2188x": 5, "21929": 2, "2199037": 2, "21c772eb": 3, "22": [3, 5], "22448991": 3, "226736": [1, 2, 3, 4, 5, 6, 7], "2269": 5, "2283": 5, "2294": 5, "22zdata_specs_vers": 3, "23": [3, 4, 5], "230": 4, "2300": 5, "23000": 5, "2303": 5, "2315100": 2, "23325": 2, "23472": 2, "235000z": 4, "23791": 2, "24": [2, 3, 4, 5, 6, 7], "240": 6, "240p": 6, "242": 7, "2431": 5, "2432": 5, "24b": 5, "25": [3, 4, 5, 6, 7], "250": 3, "2500": [3, 5], "250000": 5, "250016": 5, "2500255": 5, "250048": 5, "250080": 5, "250112": 5, "250144": 5, "250176": 5, "250208": 5, "250240": 5, "250272": 5, "250304": 5, "250_000": 5, "252": 5, "2522": 5, "2523": 5, "2533": 5, "25389677": 3, "254": 5, "255": 5, "255arrai": 5, "2564": 5, "2567": 5, "257223563": 5, "257223563reference_ellipsoid_nam": 5, "25c": 4, "25p": 4, "26": [2, 3, 5, 6], "260": 7, "26423818": 3, "2674": 5, "267mb": 3, "268mb": 3, "269909e": 2, "27": [3, 4, 5], "270": [3, 5], "271": 3, "2713": 2, "2714": 5, "2717": 5, "271lon": 3, "27561006": 3, "2764963": 2, "2766": 2, "2775788": 2, "27783": 5, "27experi": 3, "28": [2, 3, 4, 5], "2808": 5, "28196": 2, "283": 2, "2859329": 2, "286": 2, "2865": 3, "2876": 2, "2895": 3, "28t14": 4, "29": [2, 3, 4, 5], "29071741": 2, "2917": 5, "2921": 3, "2939": 3, "2945": 3, "2950": 3, "298": 5, "29t13": 4, "29t14": 4, "29t20": 4, "29t23": 4, "2_": 5, "2_tonemapped_natural_color": 5, "2btyu1tafoveieshimr1kmcjlpuxj8xj1se6zoskuoy9xy0wsjyowvbahr3c7efjlfsayvknrfc4ofb3zqo9bjwhhiugdtgip6bitrupivshiqwmblg05fk": 5, "2c": [2, 4, 5], "2kb": 3, "2lon": 3, "2p": 2, "3": 0, "30": [2, 3, 4, 5, 6, 7], "300": [3, 7], "3000": 3, "301": 1, "3017121": 3, "3031": 5, "30799666": 3, "308": 3, "30839247": 3, "3084": 3, "3086": 3, "3087": 3, "3088": 3, "30m": 1, "30x30": [1, 5], "31": [1, 3, 4, 5], "3100": 3, "3101": 3, "31027": 2, "311": 2, "31297821": 3, "31324536": 3, "314": 3, "314245179inverse_flatten": 5, "317": 2, "3178371": 2, "31929246": 3, "31t": 7, "32": [1, 3, 4, 5], "320": 6, "329696": 5, "329728": 5, "329760": 5, "329792": 5, "329824": 5, "329856": 5, "329888": 5, "329920": 5, "329952": 5, "329984": 5, "32m": 5, "33": [2, 3, 5], "330000": 5, "330_000": 5, "3333": 6, "33333333333333": 4, "3333333333333333": 4, "333333333333336": 4, "33kb": 5, "33lon": 3, "34": [3, 5], "340": 1, "3419": 4, "3422319": 2, "3436": 4, "3438": 4, "3440": 4, "3447": 4, "3455": 4, "3470": 4, "3474": 4, "34806": 2, "3488": 7, "3491": 5, "3492": 5, "35": [1, 2, 3, 5, 6], "350": 3, "3500": 3, "351": 3, "35136998": 3, "352": 3, "353": 3, "3533": 3, "354": 3, "355": 3, "356": 3, "357": 3, "358": 3, "359": 3, "35911": 2, "36": [2, 3, 5], "360": [3, 5, 6], "360coordin": 3, "360p": 6, "360time": 3, "361": [3, 4, 5], "3612": 3, "3613": 5, "365": 7, "3674": 5, "3697": 5, "37": [2, 3, 5], "3712": 5, "3723": 3, "3726": 5, "373": 2, "3731": 3, "3734": 3, "3739": 5, "3741": 3, "3745": 3, "37808514": 3, "3781": 3, "37899": 2, "37e": 5, "38": [2, 3, 5, 7], "383": 2, "3840": [5, 6], "3861": 3, "3872": 5, "39": [2, 3, 4, 5], "39577812": 3, "3a": 5, "3a0bbe8c2e6820a52f6d134152bbbc4a3c": 5, "3a100": 5, "3arrai": 5, "3atru": 5, "3c": [1, 4], "3d": 5, "3d_perspective_imag": 5, "3e": 5, "3kb": [3, 4, 5], "3x3": 3, "3y": 5, "4": [0, 5], "40": [2, 3, 4, 5, 6], "400": 3, "4000": [3, 4], "400833": 3, "40083333333334": 3, "40166666666667": 3, "401667": 3, "4025": 3, "40333333333334": 3, "40416666666667": 3, "405": 3, "40583333333333": 3, "40666666666667": 3, "4075": 3, "4081": 5, "41": [2, 3, 4, 5], "411b": 3, "416666666666664": 4, "41666666666666663": 4, "41666666666667": 4, "4185683": 2, "41861": 2, "42": [2, 3, 5], "4223": 7, "423": 2, "4235352": 2, "426": 6, "42644808": 3, "43": [3, 5], "4320": 6, "4320p": 6, "4326": [2, 5], "435": 5, "44": [2, 3, 4, 5], "44154865": 3, "4422": 4, "4440": 4, "4445": 4, "4450": 4, "4457": 4, "445e": 3, "4464": 4, "45": [3, 4, 5], "4500": 3, "4537": 3, "456e": 4, "46": [3, 4, 5, 7], "46004621": 2, "4634": 1, "47": [2, 3, 5], "474e": 4, "47e": 4, "48": [2, 3, 5], "480": 6, "480000z": 4, "480p": 6, "481": 4, "481lon": 4, "48492503": 2, "489": 2, "49": [2, 3, 4, 5], "491e": 5, "492e": 5, "499999999999999": 3, "49bc": 3, "4c": [1, 5], "4c75": 3, "4k": 6, "4kb": [3, 4], "4long_nam": 3, "5": [0, 2], "50": [1, 3, 4, 5], "500": [1, 2, 3, 4], "5000": [3, 4, 5], "500000": 4, "5000000000000002": 3, "50000000000006": 3, "5000m": 5, "5013": 2, "501e": 5, "5061533": 2, "508": 3, "51": [2, 3, 4, 5], "511": 3, "511e": 4, "514286": 2, "5194": 5, "51mb": 5, "52": [3, 4, 5], "52017fc2": 3, "523kb": [3, 5], "53": [2, 3, 4, 5, 6], "533333": 2, "54": [2, 3, 4, 5, 6], "540": 6, "540p": 6, "542857": 2, "55": [1, 3, 5], "5500": 3, "5520": 5, "553238186641": 4, "5556": [6, 7], "5564": [6, 7], "558040": 4, "5582": 4, "5599": 4, "56": [2, 3, 5], "57": [2, 3, 5], "575285314314": 4, "576": 3, "576c": 3, "5798": 4, "58": [2, 3, 5], "581447": 4, "5833": 6, "58333333333333": 4, "5833333333333333": 4, "583333333333336": 4, "59": [3, 5], "5918": 2, "59215": 2, "59231": 2, "59999999999999": 3, "59af902a": 3, "5axi": 3, "5b2e": 3, "5c": [1, 4], "5da3427142b0": 3, "5e": [3, 5], "5m": 4, "5p": [2, 4], "5standard_nam": 3, "6": [0, 1, 2, 5], "60": [3, 4, 5], "600": [3, 5], "600833": 3, "60083333333332": 3, "600dpi": 5, "601": 1, "60166666666665": 3, "601667": 3, "602000z": 4, "60225": 3, "602499999999985": 3, "60333333333332": 3, "60416666666666": 3, "60499999999999": 3, "60583333333332": 3, "606666666666655": 3, "6067": 2, "60671": 2, "60749999999999": 3, "60914": 2, "60915": 2, "61": [3, 5], "611": 4, "615385": 2, "62": [2, 3, 4, 5], "624": 2, "62879": 2, "6288": 2, "63": [3, 5], "6326": 5, "6356752": 5, "6378137": 5, "64": [2, 3, 5], "640": 6, "6416": 2, "64362": 2, "65": [1, 3, 5], "654": 2, "654000z": 4, "656250": 2, "66": [3, 4, 5], "665": 5, "666666666666664": 4, "6666666666666666": 4, "66666666666667": 4, "6667": 6, "66873600": 3, "67": [2, 3, 4, 5], "67141": 2, "6731": 4, "674": 5, "68": [2, 3, 5], "69": [3, 4, 5], "69715": 2, "6kb": 3, "7": [1, 2, 3, 4, 5], "70": [3, 4, 5, 7], "700": [3, 5], "7000": [1, 4], "700000": 2, "7030": 5, "71": [3, 4, 5], "7148": 4, "72": [3, 5], "720": [3, 6], "720b": 3, "720p": 6, "72716": 2, "73": [3, 5], "7319": 4, "74": [3, 4, 5], "74398577": 3, "75": [3, 4, 5, 6], "7500": 4, "750000": 2, "7521": 1, "76": [3, 5], "7680": 6, "77": [2, 3, 4, 5, 7], "770357e": 2, "771429": 2, "775000": 2, "777778": 2, "78": [2, 3, 5], "781": 2, "7816": 4, "789474": 2, "79": [2, 3, 4, 5], "7titl": [3, 4, 5], "8": [2, 3, 4, 5], "80": [3, 4, 5, 6, 7], "800": 3, "8000": 1, "8017": 2, "80189": 2, "80363": 2, "81": [2, 3, 5], "812500": 2, "814": 2, "816": 2, "8165": 2, "81681": 2, "81693": 2, "8175": 3, "81750000000001": 3, "818333333333335": 3, "81833333333334": 3, "81916666666667": 3, "82": [2, 3, 5], "82000000000001": 3, "82083333333333": 3, "82083333333334": 3, "82166666666667": 3, "8225": 3, "822500000000005": 3, "823333": 3, "82333333333334": 3, "82416666666667": 3, "824167": 3, "825": 3, "83": [2, 3, 4, 5], "833333": [2, 4], "83333333": 4, "83333333333333": 4, "8355": 7, "8356": 4, "8371573": 2, "83long_nam": 3, "84": [2, 3, 4, 5], "8417": 5, "844": 2, "84469": 2, "84e": 5, "84horizontal_datum_nam": 5, "84longitude_of_prime_meridian": 5, "85": [2, 3, 4, 5], "850000": 2, "853000z": 4, "854": 6, "86": [3, 4, 5], "861e": 3, "865e": 3, "866e": 3, "8673": 4, "8692": 2, "87": [2, 3, 5], "88": [2, 3, 5], "8888": 0, "89": [3, 4, 5], "8901": 5, "8b": [3, 5], "8e16": 3, "8ee5": 3, "8k": 6, "8kb": 3, "9": [2, 3, 5, 6], "90": [2, 3, 4, 5], "900": 3, "9001": 5, "90109": 2, "904": 4, "90x90": 1, "91": 2, "9122": 5, "9126": 7, "916666666666664": 4, "91666666666667": 4, "91666667": 4, "916667": 4, "92": [2, 4], "924e": 5, "925": 5, "926e": 5, "9283": 2, "928e": 5, "933333333333334": 5, "93333333333334": 5, "94": 2, "94166666666666": 5, "941666666666666": 5, "944209": 4, "95": 5, "95000005": 3, "958333333333332": 5, "95833333333334": 5, "959": 4, "960": 6, "961810": 4, "966666666666665": 5, "96666666666667": 5, "97": 2, "970": 4, "971358": 4, "975": 5, "97715": 2, "98": [2, 5], "980905": 4, "983333": 5, "98333333333332": 5, "983333333333334": 5, "98514": 2, "986": 2, "99": [2, 4, 5], "990453": 4, "991453": 2, "991666666666667": 5, "99166666666667": 5, "991667": 5, "997583e": 2, "999z": 5, "9af3": 3, "9mb": 3, "A": [0, 1, 2, 3, 4, 5, 6], "As": [3, 6], "At": 6, "Be": 6, "But": 1, "By": [1, 4, 5, 6], "For": [0, 2, 3, 4, 5, 6, 7], "If": [0, 1, 6, 7], "In": [1, 2, 3, 4, 5, 6, 7], "It": [5, 6, 7], "NO": 7, "NOT": [6, 7], "No": 3, "On": 1, "Such": 2, "That": 6, "The": [1, 2, 3, 4, 5], "Then": 4, "There": [5, 6], "These": [4, 6], "To": [0, 1, 2, 4, 5, 6], "With": 7, "_fillvalu": 5, "_imag": 1, "a100f50": 4, "a10f5": 4, "a10f5g5": 1, "a2000f500": 1, "a40f20": 1, "a5000": 5, "a5f2": 1, "a9aba5": 5, "about": [3, 4, 6, 7], "abov": [2, 3, 4, 7], "abshir": 5, "ac": 4, "accept": 3, "accept_r": 2, "access": [1, 3, 4, 6], "accordantli": 2, "achiev": [1, 6], "acknowledg": 3, "across": [4, 6], "activ": [0, 6], "activity_id": 3, "acton": 4, "actual_rang": [3, 4], "ad": [2, 6], "add": [2, 5, 6, 7], "add_offset": [1, 4, 5], "addit": 3, "addition": [2, 4], "adjust": [2, 4, 5], "administr": 3, "advanc": [5, 6], "ae": 5, "aer": 3, "aerosol": 3, "af": 5, "affect": [1, 5], "after": 7, "ag": 1, "again": [1, 2, 5], "agu": [1, 2, 3, 4, 5, 6, 7], "agu24": [0, 1, 2, 3, 4, 5, 6, 7], "agu24workshop": [0, 1, 2, 3, 4, 5, 6, 7], "aharonson": 5, "airbnb": 2, "aki": 4, "al": [1, 2, 3, 4, 5, 6, 7], "alaska": 1, "alia": 6, "align": 5, "all": [0, 2, 3, 6, 7], "allow": [2, 3, 4, 5, 6, 7], "along": [0, 3], "alreadi": 4, "also": [0, 1, 2, 4, 5], "altern": 0, "altimet": 5, "altitud": 3, "alwai": 5, "am4": 3, "amazonaw": 5, "ambiti": 6, "an": [0, 1, 2, 3, 4, 5, 7], "anaconda": 0, "analog": 3, "analysi": 5, "andr": [0, 5], "andrebelem": 5, "anger": [6, 7], "angl": [1, 5], "ani": [1, 2, 3, 4, 5, 6, 7], "anim": 0, "annot": [1, 4], "announc": 7, "annual": [1, 2, 3, 4, 5, 6, 7], "anon": 3, "anoth": [0, 1, 2, 4, 5, 6, 7], "antarct": 0, "antarctica": 5, "anyth": 6, "aogcm": 3, "api": 5, "app": 5, "appeal": [4, 5], "appear": [1, 5, 6, 7], "append": 5, "appli": [4, 6], "approach": 5, "appropri": 2, "approxim": [3, 5], "ar": [0, 1, 2, 3, 4, 5, 6, 7], "arbitrari": 1, "arc": [1, 3, 4, 5], "area": [1, 2, 3, 4, 5, 6], "area_or_point": 5, "areacello": 3, "areacellocell_method": 3, "areacelloforcing_index": 3, "areaid": 2, "areascale_factor": 5, "argument": [2, 4, 5, 6, 7], "aris": 3, "around": [1, 2, 3, 4, 5, 6, 7], "arrai": [3, 4, 5], "arriv": 7, "arrow": 4, "ask": [1, 2, 3, 4, 5, 6, 7], "aspati": 2, "aspect": [2, 4, 5, 6], "assembl": 6, "asset": 5, "assign": 6, "assum": 0, "at_download": 2, "atla": 3, "atmchem4": 3, "atmo": 3, "atmoschem": 3, "atmospher": 3, "attent": 7, "attribut": [1, 3, 4, 5, 7], "attributesourc": 3, "author": [1, 2, 3, 4, 5, 6, 7], "auto": 1, "automat": [1, 2, 5, 6], "avail": [3, 6], "avariant_label": 3, "averag": 5, "averagearea_or_point": 5, "avoid": 3, "aw": 5, "ax": 1, "axi": [1, 2, 3, 5], "azimuth": [1, 4, 5], "b": [1, 5, 7], "back": 4, "background": [5, 6], "balanc": [1, 5], "band": 5, "bandpandasindexpandasindex": 5, "bar": [1, 2], "base": [2, 3, 4, 5, 6], "basemap": [2, 4, 7], "bash": [0, 6], "basic": 6, "bdbc": 3, "bear": 5, "becaus": [3, 6, 7], "befor": [1, 3, 4, 7], "begin": [1, 4, 6, 7], "beginn": 6, "behavior": 7, "behind": 1, "being": 6, "bele": [0, 5], "below": [0, 2, 4, 6], "benefit": 3, "benjamin": 5, "besid": [2, 4], "best": 5, "better": [4, 5], "between": [2, 3, 4, 5, 6, 7], "bgcstatu": 3, "bilbao": 2, "bin": 2, "binder": 0, "bit": [1, 4, 7], "black": [1, 4, 5, 6], "blank": 1, "blob": 5, "blue": 7, "bnd": 3, "bokeh": 3, "bold": [4, 6], "book": [0, 2, 3], "both": [3, 5, 6, 7], "bottom": [2, 5], "boulevard": 2, "bound": [4, 5], "boundari": [1, 2, 3], "boundsunit": 3, "box": [2, 4], "branch_method": 3, "branch_time_in_child": 3, "branch_time_in_par": 3, "brave": 6, "break": 6, "brighten": 7, "browser": [0, 2, 5], "build": 4, "button": [0, 5], "c": [0, 1, 2, 3, 4, 5, 6, 7], "c0": 7, "c1": 7, "c13cx13cx30": 6, "c13cx13cx80": 6, "c24cx12cx30": 7, "c24cx12cx80": 7, "c24cx12x80": 7, "c96": 3, "ca0140ef": 3, "calcul": 3, "calendar": 3, "call": [0, 2, 4, 5, 6], "can": [0, 1, 2, 3, 4, 5, 6, 7], "canva": 7, "captur": 5, "care": 6, "carefulli": 5, "cartesian": [1, 3, 5], "case": [1, 2, 3, 4, 5, 6, 7], "cat": [6, 7], "catalog": [4, 5], "categori": 3, "caus": 4, "cc": [2, 4], "cd": 0, "ce1c5cca69b5": 3, "cell": [1, 3, 4], "cell_measur": 3, "cell_method": 3, "celsiu": 3, "center": [1, 4, 5, 6], "centimet": [1, 2, 4, 5, 6], "central": [1, 6], "central_meridian": 5, "cf": [1, 3, 4, 5], "cftime": 3, "cftimeindex": 3, "cgi": [1, 2, 3, 4, 5, 6, 7], "chang": [1, 3, 5, 6, 7], "charact": 1, "chd": 6, "check": [6, 7], "checkout": 2, "chem": 3, "chemistri": 3, "chicago": 2, "chih": 1, "choos": [1, 2, 5], "choropleth": 0, "circel": 2, "circl": [2, 4], "circular": 4, "citat": 3, "clair": 5, "clariti": 5, "class": 4, "classic": [1, 4], "clean": 6, "click": [0, 1, 5], "client": 4, "climat": 3, "clip": [4, 5], "clone": 0, "close": [4, 5], "cloud": 5, "cm": [6, 7], "cmap": [1, 2, 3, 4, 5], "cmd": 6, "cmip": 3, "cmip6": [0, 3], "cmip6nominal_resolut": 3, "cmip6parent_source_id": 3, "cmipparent_experiment_id": 3, "cmor": 3, "co": 5, "coast": [0, 2], "cobaltv2": 3, "coda": 7, "code": [1, 3, 4, 5, 6, 7], "cog": 5, "col": 1, "collect": 5, "color": [4, 5, 6, 7], "colorbar": [0, 2, 3, 4, 5], "colormap": [1, 2, 3, 4, 5], "colourmap": [2, 4], "columbia": 3, "column": [1, 2, 4, 6, 7], "com": [0, 1, 2, 3, 4, 5, 6, 7], "combin": [2, 5, 6], "come": 5, "comfort": 0, "command": [0, 1, 4, 5, 6, 7], "comment": [1, 3], "common": 3, "commun": 2, "complet": [0, 1, 6], "complex": [2, 5, 6, 7], "complic": [4, 6], "compress": 4, "compressionfil": 4, "comput": [3, 5], "comsub_experi": 3, "concept": 1, "conda": 0, "cone": 1, "confer": [1, 2, 3, 4, 5, 6, 7], "confex": [1, 2, 3, 4, 5, 6, 7], "config": [0, 3, 5], "configur": 5, "confirm": 1, "conic": 1, "connect": 4, "conserve_order1grid_label": 3, "conserve_order1long_nam": 3, "consid": 5, "consist": 5, "consolid": 3, "constant": 6, "consult": 3, "consum": 6, "contact": 3, "contain": [0, 2, 4, 6, 7], "content": [6, 7], "contin": [2, 5], "continu": [1, 3], "control": [1, 5, 7], "convent": [3, 4, 5], "convers": 6, "convert": [2, 4, 6], "coordin": [1, 2, 3, 4, 5], "copi": [0, 2], "core": [3, 6], "corner": 2, "cornsilk": 4, "correct": 6, "correctli": [6, 7], "could": [6, 7], "count": 2, "countri": [1, 2], "coupl": 3, "cours": [0, 1, 2], "courtesi": [1, 3, 5], "cover": [1, 3], "cpt": [1, 2, 4, 7], "cql": 5, "cquak": 7, "cr": 2, "crameri": [2, 4], "creat": [3, 5, 6, 7], "creation": [1, 6, 7], "creativ": 3, "creativecommon": 3, "cred": 7, "crime": 2, "crowd": 2, "crsdescript": 3, "crustal": 1, "cryospher": 5, "csv": [2, 4], "cube": 3, "cumul": 4, "current": [1, 2, 6, 7], "curv": 1, "custom": [2, 3, 6, 7], "cut": 1, "cylind": 1, "cylindr": 1, "d": [0, 1, 3, 4, 6, 7], "d18c5ff2e7f0": 3, "d6": 7, "da95bbfd29b7": 3, "da_mar": 5, "da_olympu": 5, "dai": [2, 3, 6, 7], "danub": 2, "darken": 7, "darkgrai": 4, "darkorang": 4, "darkr": 2, "dashboard": 3, "dask": 3, "data": [0, 1, 6, 7], "dataarrai": [3, 4, 5], "dataarrayband": 5, "datafram": 4, "dataset": [2, 3, 4, 5], "datasetdimens": 3, "datasetid": 5, "date": [3, 7], "datetime64": 3, "datetimenoleap": 3, "datum": 5, "decai": 7, "decemb": [1, 2, 3, 4, 5, 6, 7], "dedent": 1, "default": [0, 1, 2, 4, 5, 6, 7], "defin": [1, 2, 4, 6], "deg": 3, "degre": [1, 3, 4, 5, 6], "degree_eastarrai": 3, "degree_northarrai": 3, "degreehistori": [3, 5], "degreeparent_activity_id": 3, "degrees_east": 3, "degrees_eastarrai": 3, "degrees_eaststandard_nam": [3, 4, 5], "degrees_north": 3, "degrees_northarrai": 3, "degrees_northstandard_nam": [3, 4, 5], "delaviel": [6, 7], "delet": 6, "dem": 0, "dem_mosa": 5, "demand": 5, "demsource3d": 5, "densiti": 6, "depend": [0, 2], "depth": [2, 3, 4, 7], "depth_km": 2, "depthaxi": 3, "depthlong_nam": 3, "depthpandasindexpandasindex": 3, "desc": 5, "descript": [3, 4, 5], "design": [0, 4], "detail": [1, 2, 5], "determin": [1, 2, 7], "develop": 7, "df": 4, "df_high_mag": 4, "df_jp_eq": 2, "df_low_mag": 4, "df_your_dataset": 2, "diamet": [2, 5], "dictionari": 4, "differ": [1, 3, 4, 5, 6], "dimens": [1, 3, 6], "dimension": 3, "dip": 4, "direct": [1, 4, 5], "directli": [0, 1, 2, 6], "directori": 6, "displai": 6, "disproportion": 1, "distanc": 4, "distort": [1, 4], "distribut": [2, 5], "do": [1, 2, 4, 6, 7], "doc": [0, 1, 3], "document": [1, 2, 6, 7], "doe": [6, 7], "doesn": 6, "doi": [5, 6, 7], "domain": 1, "don": [1, 6], "done": [2, 6, 7], "dot": [5, 6], "doubl": 0, "dougla": 2, "douro": 2, "down": 5, "downgridtyp": 3, "download": [0, 2, 4, 5, 7], "dpc": [6, 7], "dpi": [2, 4, 6], "dpu": 6, "drapegrid": 5, "draw": [2, 4, 7], "drawn": [6, 7], "dtype": [3, 4, 5], "due": 7, "durat": 7, "dure": [6, 7], "dvd": 6, "dynam": 3, "e": [0, 1, 2, 3, 4, 5, 6, 7], "e2024gc011545": [6, 7], "e270": 3, "each": [0, 1, 3, 4, 6, 7], "earlier": [1, 3], "earth": [1, 3, 5, 7], "earth_ag": [0, 1], "earth_age_30m_g": 1, "earth_relief": 0, "earth_relief_01d_g": 3, "earth_relief_03m": 1, "earth_relief_03m_g": 1, "earth_relief_03s_g": 3, "earth_relief_06m": [6, 7], "earthbyt": 1, "earthquak": [2, 4], "easi": 0, "easier": 5, "easiest": 6, "east": [3, 4, 5], "ebro": 2, "ecosystem": 0, "ed": 7, "edit": 6, "edu": [3, 5], "eea": 2, "ef0": [2, 4], "effect": 5, "effici": [5, 7], "egm96": 3, "egm96horizontal_datum": 3, "egu22pygmt": 5, "either": [0, 3], "elb": 2, "element": [2, 6], "element84": 5, "elev": 3, "eleva": 1, "els": 6, "emb": 1, "emphas": 5, "empow": 6, "emul": 0, "enclos": 6, "end": [4, 6, 7], "end_i": 4, "end_x": 4, "endpoint": 4, "endtim": 4, "enhanc": 5, "ensur": 0, "enter": 1, "entir": [1, 3, 5], "entri": 2, "env": 0, "environ": 6, "eo": 5, "eof": [6, 7], "ep": [5, 7], "epicentr": 4, "epsg": [2, 5], "equal": 5, "equat": 3, "equidist": 1, "er": 7, "error": [1, 2, 3, 4, 5, 6, 7], "esm4": 3, "esm4parent_time_unit": 3, "esm4source_typ": 3, "esmeralda": 4, "especi": 1, "essenti": [1, 6], "esteban": [0, 6, 7], "et": [1, 2, 3, 4, 5, 6, 7], "etc": 2, "eu": [2, 5], "europa": 2, "european": 2, "ev": 5, "even": [3, 6], "evenli": 2, "event": [0, 4, 6], "everi": [1, 4, 5], "everyth": 1, "exagger": 5, "exampl": [1, 2, 3, 4, 5, 6, 7], "excess": 6, "exclud": 3, "execut": 6, "exercis": 5, "exist": 3, "expect": [6, 7], "exper_id_fljgh4wo6w": 3, "experi": 5, "explain": [2, 6, 7], "explan": [2, 6, 7], "explicitli": 6, "explor": [3, 4, 5], "exponenti": 2, "express": 3, "extend": 6, "extens": [1, 3, 4, 7], "extensionfil": 4, "extent": [1, 3, 5], "extern": [1, 5, 6], "extra": 5, "extract": 4, "f": [1, 2, 3, 6, 7], "f14p": 6, "f9p": 2, "fabio": [2, 4], "face": 2, "factor": [5, 7], "fade": 7, "fall": 4, "fals": [4, 5], "false_east": 5, "false_north": 5, "faster": [0, 7], "fault": 4, "featur": [2, 3, 5], "februari": 5, "federico": [0, 6, 7], "fee": [1, 2, 3, 4, 5, 6, 7], "feel": [0, 2, 4], "few": 4, "ffmpeg": 6, "fg": 5, "fgray20": 4, "fhd": 6, "field": 3, "fig": [1, 2, 3, 4, 5], "figsiz": 1, "figur": [0, 2, 3, 5, 6, 7], "file": [0, 1, 2, 3, 4, 5, 6, 7], "filenam": [2, 5], "fill": [1, 2, 4, 6], "filter": [1, 2, 3, 5], "final": [0, 4, 5, 7], "find": [2, 4, 5], "finit": 7, "first": [0, 2, 3, 4, 5], "fish": 6, "fist": [2, 4], "fit": [3, 6], "fix": [1, 2, 3, 4, 5, 7], "flat": 1, "flatten": 5, "float": [1, 4], "float32": 3, "float320": 3, "float64": [3, 4, 5], "float640": 3, "float6412": 5, "float642": 5, "float6437": 3, "fluid": 3, "fly": 6, "fmp4": [6, 7], "fname": 3, "focal": 4, "focal_mechan": 4, "focu": 2, "folder": [0, 1], "follow": [0, 1, 2, 5, 6, 7], "font": [1, 2, 4, 7], "font_tag": 7, "footprint": 5, "forc": 4, "foreground": 6, "form": [2, 4, 7], "format": [1, 2, 4, 6], "format_clock_map": 7, "forum": [1, 2, 3, 4, 5, 6, 7], "found": [1, 2, 3, 4, 5, 6, 7], "four": [1, 6], "fp": 6, "frac": 6, "fraction": 5, "frame": [2, 3, 4, 5], "free": [0, 1, 2, 3, 4, 5, 6, 7], "fremetar": 3, "freq": 3, "from": [0, 1, 2, 4, 5, 6, 7], "fromtim": 5, "front": 4, "fr\u00f6hlich": [0, 2, 4], "full": 3, "fuller": 2, "fullest": 3, "fullwidth": [1, 3, 5], "function": [1, 3, 4], "fundament": 1, "further": [2, 3], "further_info_url": 3, "furtherinfo": 3, "g": [0, 1, 2, 3, 4, 5, 6, 7], "galleri": [2, 4, 6, 7], "garvin": 5, "gaussian": [1, 3, 5], "gblack": [6, 7], "gc": 3, "gcsf": 3, "gcsfilesystem": 3, "gdf_airbnb": 2, "gener": [0, 1, 3, 5, 6, 7], "genericmappingtool": [0, 1, 2, 3, 4, 5, 6, 7], "geo": 1, "geochemistri": [6, 7], "geodacent": 2, "geodataset": 2, "geodet": 5, "geogc": 5, "geograph": [1, 4], "geoidoriginal_nam": 3, "geojson": 2, "geometri": 5, "geopackag": 2, "geopanda": 0, "geophys": [0, 3, 5, 6, 7], "geospati": [1, 2, 3, 4, 5, 6, 7], "geosystem": [6, 7], "geotiff": 5, "geotransform": 5, "get": [0, 4, 6, 7], "get_ev": 4, "get_mapp": 3, "gfdl": 3, "gfdllicens": 3, "gif": 6, "git": 0, "github": [0, 1, 2, 3, 4, 5, 6, 7], "give": [1, 4, 5, 6, 7], "given": [1, 2, 5], "global": [3, 4], "gm": 3, "gmail": 3, "gmt": [2, 3, 4, 5], "gmt_app_m_1a": 1, "gmt_data_serv": 3, "gmtapi": [3, 4, 5], "gmtcolor": 1, "gmtread": [1, 3, 5], "go": [0, 2, 5], "goal": 5, "good": 5, "googl": 3, "gov": 3, "govcreation_d": 3, "govern": 3, "gpd": 2, "gpd_river": 2, "gpd_rivers_long": 2, "gpd_rivers_org": 2, "gpd_rivers_short": 2, "gpkg": 2, "gr": 3, "grab": 5, "grai": [1, 2], "grand": 2, "graphic": 6, "graphicsmagick": 6, "gray10": 2, "gray30": 4, "gray50": 2, "gray99": 2, "grayc": 3, "grd": [1, 3, 5], "grdblend": [1, 3, 5], "grdcontour": 0, "grdcut": 1, "grdgradient": [0, 3, 4], "grdgradienthistori": 3, "grdimag": [0, 3, 4, 5, 6, 7], "grdinfo": [0, 1, 3, 4], "grdtrack": 0, "grdview": 0, "great": 4, "green": 7, "greenwich": [3, 5], "greenwichgeographic_crs_nam": 5, "grei": 1, "grhistori": 3, "grid": [0, 5, 6, 7], "grid_crust_ag": 1, "gridlin": [1, 4], "gridtyp": 3, "gt": [3, 4, 5], "guadalquivir": 2, "guid": 6, "gwhite": [2, 4], "h": [1, 2, 4, 6, 7], "h0": 5, "ha": [1, 2, 6, 7], "had": 6, "handl": 6, "hard": 7, "harship_in": 2, "has_year_zero": 3, "have": [0, 1, 2, 4, 5, 6, 7], "hd": 6, "hdl": 3, "head": [2, 4], "height": [1, 3, 4, 5, 6], "help": [2, 4, 5, 6], "helvetica": [4, 6, 7], "henc": 6, "here": [0, 2, 3, 4, 5, 6, 7], "hidden": 6, "high": [4, 5, 6, 7], "higher": [4, 5], "highest": 1, "highlight": [4, 5], "hillshad": [3, 5], "hing": 5, "histogram": 0, "histori": [1, 2, 3, 4, 5, 6, 7], "historicalparent_mip_era": 3, "histtyp": 2, "home": 3, "hood": 6, "horizont": [1, 3, 5], "horizontal_datum": 3, "hour": 7, "hover": 0, "how": [0, 1, 3, 4, 5], "howat": 5, "howev": [5, 7], "hp": 5, "hriver": 2, "html": [0, 1, 5], "http": [0, 1, 2, 3, 4, 5, 6, 7], "hub": 5, "hue": 5, "hui": [0, 1, 4], "hypocentr": [2, 4], "i": [0, 1, 2, 4, 5, 7], "i30": 5, "i5m": 4, "i600": 5, "i_riv": 2, "ian": 5, "icon": 0, "id": [3, 5], "idea": [4, 7], "ideal": [1, 6], "ident": [6, 7], "identifi": 5, "igpp": 3, "illumin": [4, 5, 6], "illus": 6, "imag": [1, 2, 4], "img_dpi": [2, 4], "impact": 1, "impli": 3, "import": [2, 3, 4, 5, 6], "importantli": 4, "inc": 6, "inch": 6, "includ": [3, 4, 6, 7], "income_pc": 2, "increas": [1, 3, 6, 7], "increment": 6, "indent": 1, "index": [1, 2, 3, 4, 5], "indic": [2, 4], "individu": 4, "info": 3, "inform": [1, 2, 3, 4], "initialization_index": 3, "input": [4, 7], "insert": 2, "insid": [0, 6], "instal": 0, "instead": [5, 6, 7], "instruct": 0, "int64": 5, "int640crs_wkt": 5, "int641": 5, "integ": [5, 6], "integr": [0, 3], "intend": 0, "intens": 7, "interact": [0, 3], "intercomparison": 3, "interest": [1, 2, 3, 4, 5], "intern": 3, "interp_method": 3, "interpol": [3, 4], "interpret": 5, "interv": [1, 4], "introduc": [4, 6], "invis": [1, 7], "io": [2, 5], "ipynb": [0, 5], "iri": [1, 3], "iridl": 3, "isel": [3, 5], "island": 5, "issu": [1, 2, 3, 4, 5, 6, 7], "item": 5, "its": [1, 3, 7], "itself": 2, "j": [1, 5, 6, 7], "januari": 7, "japan": 2, "japan_quak": [0, 2], "jbc": 1, "jg": 6, "jg0": 6, "ji": [0, 5], "jing": [0, 1, 4], "jlm": 2, "jn": 7, "jn14c": 7, "jone": [0, 3], "jong": 5, "json": 5, "jtl": 2, "june": 5, "jupyt": [0, 1, 2, 4], "just": [1, 2, 3, 4, 5, 6, 7], "justif": 1, "k": 6, "keep": [2, 4, 6], "kei": [1, 6], "kenwood": 2, "kilomet": 4, "kind": [1, 2, 3, 4, 5, 6, 7], "km": [1, 3, 4, 5], "l": [1, 6, 7], "l2a": 5, "lab": [0, 2], "label": [1, 2, 3, 4, 5, 6, 7], "laboratori": 3, "lake": 2, "lambertian": 3, "land": [1, 2, 3, 4], "landic": 3, "landscap": 5, "larg": [1, 2], "laser": 5, "lat": [1, 3, 4, 5], "lat0": 1, "lat1": 1, "lat2": 1, "lat_bnd": 3, "lat_bndscell_method": 3, "lat_bndspointwidth": 3, "lat_max": 4, "lat_min": 4, "later": [5, 6, 7], "latest": 0, "latitud": [1, 2, 3, 4, 6, 7], "latitude_of_origin": 5, "latitudeaxi": [3, 4, 5], "latitudebound": 3, "latitudelong_nam": 3, "latitudestandard_nam": 3, "latitudeunit": [3, 4, 5], "latpandasindexpandasindex": [3, 4, 5], "launch": 0, "law": 3, "layer": [1, 3, 5], "layerid": 5, "layout": 0, "lc0": 7, "lcount": 2, "ldeo": 3, "ldistanc": 4, "learn": [1, 2, 4, 5, 6], "least": 6, "left": [0, 2, 5], "legend": [0, 2], "lelev": [1, 4, 5], "len": 2, "len_limit": 2, "length": [1, 3, 4, 5], "leong": [0, 5], "let": [2, 3, 5], "letter": [1, 5], "level": [3, 4], "levelsstandard_nam": 3, "lexic": 6, "lhypocentr": [2, 4], "liabil": 3, "liam": 1, "librari": [0, 2, 3], "licens": 3, "lidar_to_surfac": 5, "light": [3, 5], "lightblu": [1, 4], "lighter": 7, "lightgrai": 4, "like": [1, 2, 3, 5, 6, 7], "lim_mag": 4, "limit": [2, 3, 4], "lin": 1, "line": [0, 1, 4], "link": 0, "list": [0, 1], "littl": 7, "lkm": [2, 4], "ll": [3, 5], "llabel": 5, "llnl": 3, "lm": [2, 4, 5], "lm4": 3, "lmeter": 5, "lmoment": 2, "lng": 5, "load": [1, 2, 5], "load_earth_ag": 1, "load_earth_relief": [1, 3], "load_mars_relief": 5, "load_sample_data": 2, "loadtxt": 4, "loc": 2, "localhost": 0, "locat": [3, 4, 5], "log10": 4, "logarithm": 4, "lon": [1, 3, 4, 5], "lon0": 1, "lon_bnd": 3, "lon_bndscell_method": 3, "lon_bndspointwidth": 3, "lon_max": 4, "lon_min": 4, "long": 6, "long_nam": [3, 4, 5], "longer": [2, 3], "longitud": [1, 2, 3, 4, 6, 7], "longitudeaxi": [3, 4, 5], "longitudebound": 3, "longitudelong_nam": 3, "longitudestandard_nam": 3, "longitudeunit": [3, 4, 5], "lonpandasindexpandasindex": [3, 4, 5], "look": [1, 2, 4, 5, 6], "loop": 6, "low": [4, 7], "lower": [1, 4, 5], "lowest": 1, "lpopul": 2, "lriver": 2, "lseafloor": 1, "lset": 3, "lt": [3, 4, 5], "lucki": 2, "lui": [6, 7], "lunch": 6, "m": [0, 1, 2, 3, 4, 5, 6, 7], "m0": 6, "m10c": [1, 2, 4], "m12c": [3, 5], "ma": 1, "made": [5, 6], "mag": 4, "mag_max": 2, "mag_min": 2, "magnifi": 7, "magnitud": [2, 4, 7], "mai": [1, 2, 5, 6], "main": [5, 6, 7], "mainscript": 6, "maintain": 5, "make": [0, 1, 2, 3, 5], "makecpt": [0, 2, 3, 4, 5, 7], "maker": 6, "mamba": 0, "manag": 0, "managua": 5, "manual": 4, "map": [0, 3, 6, 7], "mapzen": 5, "marin": 1, "mark": [1, 4, 5], "marker": 1, "marrai": 3, "mars_relief": 0, "mars_relief_01d_g": 5, "mars_relief_30s_g": 5, "martian": 5, "mask": 3, "mass": [4, 6, 7], "master": [1, 2, 3, 4, 5], "match": 5, "match_data_arrai": 5, "materi": 0, "max": [0, 2, 3, 4, 6], "maximum": 4, "maxlatitud": 4, "maxlongitud": 4, "mayb": 6, "mc": [1, 4, 7], "mcmurdo": 5, "mean": [1, 3, 4, 5], "meancom": 3, "meanlong_nam": 3, "measur": [4, 5], "meca": [0, 4], "mechan": 4, "meet": [1, 2, 3, 4, 5, 6, 7], "meetingapp": [1, 2, 3, 4, 5, 6, 7], "memori": 3, "mercat": 1, "merchant": 3, "merg": 5, "merge_arrai": 5, "meridian": 3, "meter": [2, 3, 5], "metersvertical_datum": 3, "metersxarrai": 5, "method": [1, 3, 5, 6], "metr": 5, "metrearrai": 5, "mf": 7, "mi1": 7, "microsoft": 5, "mid": 1, "might": [1, 4], "mile": 5, "min": [1, 2, 4, 6], "ming": 1, "miniconda": 0, "minim": 1, "minimum": 4, "minlatitud": 4, "minlongitud": 4, "minmagnitud": 4, "minu": 6, "minut": [1, 4, 6], "mip_era": 3, "ml": 7, "mode": 6, "model": 3, "moder": 5, "modern": 6, "modifi": [2, 7], "modul": 6, "mola": 5, "mollweid": 5, "mom6": 3, "moment": 2, "mon": 5, "monfurther_info_url": 3, "month": [2, 7], "more": [1, 2, 3, 4, 5, 6, 7], "morin": 5, "most": [3, 5, 6], "motion": [4, 6], "move": [4, 6], "movi": [0, 7], "movie_col0": [6, 7], "movie_col1": 6, "movie_colk": 6, "movie_dpu": 6, "movie_fram": 6, "movie_height": 6, "movie_nam": 6, "movie_nfram": 6, "movie_r": 6, "movie_tag": 6, "movie_text": 6, "movie_width": [6, 7], "movie_wordw": 6, "mp4": 6, "ms5": 7, "mt": 7, "much": 7, "multi": 3, "multidigraph": 2, "multilinestr": 2, "multipli": 3, "must": [1, 4, 5, 6, 7], "mv": 7, "myoung": 5, "n": [1, 3, 4, 5, 6, 7], "n00w165": 5, "n00w180": 1, "n37w120": 3, "n_column": [1, 4], "n_row": [1, 4], "naa": 5, "name": [0, 1, 2, 3, 4, 5, 6, 7], "nan": [2, 4], "nasa": [3, 5], "nation": [2, 3], "nativ": 3, "natur": 5, "navia": 2, "navig": 1, "nc": 3, "ncol": 1, "ndarrai": 4, "ndescript": 5, "nearth": 6, "need": [1, 2, 4, 5, 6, 7], "neglig": 3, "netcdf": [1, 3, 4], "netcdf_fil": 3, "netcdf_tracking_id": 3, "neumann": 5, "new": [1, 4, 6, 7], "newcolnam": 4, "next": [4, 5], "nf": [1, 4], "nj": 3, "no_clip": 4, "noaa": 3, "nodc": 3, "node": [1, 4], "noh": 5, "noleap": 3, "noleapdescript": 3, "nomin": 3, "non": 6, "none": [2, 3, 7], "nonesub_experiment_id": 3, "nonetable_id": 3, "normal": [1, 7], "north": [3, 4, 5], "northwest": 5, "note": [2, 4, 5, 7], "notebook": [0, 1, 2, 4], "notic": [1, 3, 5], "novemb": [1, 2, 3, 4, 5, 6, 7], "now": [0, 1, 2, 4, 5, 6, 7], "np": 4, "nquak": 7, "nrow": 1, "ntnue": 1, "null": 3, "num_crim": 2, "num_spot": 2, "num_theft": 2, "number": [1, 5], "numpi": [0, 4], "nx": 5, "ny": 5, "nz": 5, "o": [3, 4, 5], "o0": 2, "oakland": 2, "object": [2, 3, 6, 7], "object2015": 3, "obscur": 5, "observ": 4, "obspi": 4, "occur": 7, "occurr": [6, 7], "ocean": [3, 4], "oceania": [1, 3, 5], "oceanrefer": 3, "ocnbgchem": 3, "oct": 5, "off": 5, "offici": 0, "offset": [2, 4, 6], "often": 5, "ogr": 2, "ok": 6, "oleron": [3, 4, 5], "olympu": 5, "om4p5": 3, "omon": 3, "omontitl": 3, "onc": [0, 1, 5, 6, 7], "one": [1, 3, 5, 6, 7], "ones": 5, "onli": [1, 2, 3, 4, 6, 7], "onlin": [0, 5], "onto": [1, 5], "opaqu": 7, "open": [0, 1, 2, 4, 5, 6, 7], "open_dataset": 3, "open_rasterio": 5, "open_zarr": 3, "opendata": 5, "optic": 5, "optim": 5, "option": [4, 6, 7], "orang": [2, 4], "orbit": 5, "order": [3, 4, 6], "org": [0, 1, 2, 3, 4, 5, 6, 7], "origin": [1, 4, 7], "oslo": 2, "osmnx": 2, "other": [1, 2, 4, 5, 6], "otherwis": 4, "our": [2, 4, 5], "out": 3, "outgrid": 1, "outlin": [2, 4], "output": [1, 3, 4, 6], "outputrealization_index": 3, "outsid": [0, 4, 6], "over": [0, 3, 5, 6], "overal": 1, "overlai": 1, "overlaid": 5, "overview_level": 5, "ovr_resampling_alg": 5, "own": [2, 3, 4], "p": [2, 4, 6, 7], "p0": [2, 4], "pa": 3, "packag": [0, 1, 2, 3, 4], "page": 0, "pai": 5, "palett": 1, "pan": 5, "panda": [0, 4], "pane": 0, "panel": [3, 4], "paper": [6, 7], "parallel": 1, "paramet": [2, 4, 5, 7], "park": 2, "part": [1, 2, 3, 4, 5, 6, 7], "partial": [3, 6], "particular": 3, "pass": [1, 2, 3, 4, 5], "path": [0, 4], "pattern": 5, "paul": 5, "pcmdi": 3, "pd": [2, 4], "pdf": 1, "pen": [2, 4], "per": [5, 6, 7], "period": 3, "permit": 3, "perspect": [1, 5, 6], "pgc": 5, "phase": [3, 7], "pixel": 6, "place": [2, 7], "plai": [1, 2, 3, 4, 5, 6, 7], "plain": 1, "plane": 1, "planet": 5, "planetari": 0, "planetarycomput": 5, "planetarymap": 5, "plate": 4, "plateau": 7, "pleas": [0, 1, 2, 3, 4, 5, 6, 7], "plot": [0, 1, 5, 6, 7], "plot_latitud": 4, "plot_longitud": 4, "plu": [4, 5], "png": [1, 6, 7], "point": [1, 2, 4, 6], "pointlong_nam": 3, "polar": [1, 5], "polar_stereograph": 5, "polar_stereographicstandard_parallel": 5, "polargeospatialcent": 5, "pole": 1, "polygon": 4, "pop": 5, "popul": 2, "popul_max": 2, "popul_min": 2, "porter": 5, "posit": [1, 2, 4, 7], "possibl": [5, 6, 7], "postscript": 6, "potenti": 6, "power": 5, "practic": 5, "pre": [0, 1, 2, 3, 4, 5, 6, 7], "precis": 6, "prefer": 0, "prefix": 6, "prepar": 3, "preserv": 1, "preset": 6, "preview": 5, "previou": [1, 6, 7], "prews9": [1, 2, 3, 4, 5, 6, 7], "price_pp": 2, "primem": 5, "princeton": 3, "print": [1, 2, 4], "prior": 6, "probabl": [1, 6], "process": [5, 6, 7], "produc": 3, "profil": 2, "program": 1, "progress": 7, "projc": 5, "project": [0, 2, 3, 5, 6], "projection_x_coordinateunit": 5, "projection_y_coordinateunit": 5, "projectionstandard_nam": 5, "prompt": 0, "proper": [3, 5], "properli": 6, "properti": 7, "provid": [1, 2, 3, 4, 5, 6, 7], "ps_page_color": 5, "public": [2, 4], "pull": [1, 2, 3, 4, 5, 6, 7], "puls": 5, "purpos": [1, 3, 6, 7], "put": 0, "pygmt": [2, 5, 6, 7], "python": [0, 1], "quadrant": 4, "quak": 7, "quakes_2018": [0, 7], "qualiti": [5, 6, 7], "quantiti": 2, "question": [1, 2, 3, 4, 5, 6, 7], "quicken": 3, "quit": 6, "quot": 5, "r": [1, 3, 4, 5, 6, 7], "r12c": 3, "r15c": 3, "r1i1p1f1": 3, "r1i1p1f1grid": 3, "r1i1p1f1netcdf_tracking_id": 3, "r1i1p1f1physics_index": 3, "r2": 7, "radianc": 3, "radiancelong_nam": 3, "radiantearth": 5, "rake": 4, "ran": 0, "rang": [1, 2, 3, 4, 5], "rapid": 6, "raster": [5, 6], "rate": 6, "rather": 3, "rcp8": 3, "re": [0, 1, 5], "read": [2, 4], "read_csv": [2, 4], "read_fil": 2, "readabl": 1, "readi": [0, 4], "realism": 5, "realiz_id_kt2pvosbwt": 3, "reason": 6, "recommend": [0, 1, 2, 3, 4, 5, 6, 7], "record": [3, 6], "recreat": 6, "red": 4, "reddish": 5, "reduc": [1, 3, 5, 6, 7], "ref": 3, "refer": [1, 2, 4, 5], "refin": [5, 6], "reflect": 3, "regard": 2, "region": [1, 2, 3, 4, 5], "registr": [1, 4], "registri": 5, "regrid": 3, "regular": [0, 5], "rel": 5, "reli": 6, "relief": [1, 3, 6, 7], "relieflong_nam": [3, 5], "rema": 5, "remain": 7, "remark": [1, 4], "remot": [1, 3, 4, 5, 6], "remov": 6, "render": [0, 5], "rental": 2, "repeat": [6, 7], "replac": 2, "report": [1, 2, 3, 4, 5, 6, 7], "repositori": [0, 4], "repres": [2, 4, 5, 6], "reproject_match": 5, "request": [1, 2, 3, 4, 5, 6, 7], "requir": [0, 2, 3, 4, 6, 7], "requisit": 0, "research": 5, "reset": 5, "resolut": [1, 2, 3, 4, 5, 6, 7], "resourc": [1, 5, 6], "respect": 4, "response_r": 2, "result": [3, 6, 7], "retriev": [4, 5], "return": [3, 7], "rev_rat": 2, "reveal": 5, "revers": [2, 4], "rg": [5, 7], "rgb_imag": 5, "rgb_mosaic": 5, "rich": 3, "richard": 4, "right": [0, 2], "rio": 5, "rioxarrai": [0, 5], "rise": 7, "rive": 2, "rltb": [2, 4], "road": 2, "rocket": 0, "room_typ": 2, "rose": 1, "ross": 5, "rotat": [5, 6], "rough": [2, 4, 5], "row": [1, 2, 6], "run": [1, 3, 4, 7], "run_id_1s546gmkb": 3, "runner": 3, "s0": 4, "s2": 5, "s2b_58ceu_20241109_0_l2a": 5, "s2b_58cev_20241109_0_l2a": 5, "s2l2a": 5, "s3": 5, "sai": 0, "same": [1, 2, 3, 4, 6, 7], "sampl": [1, 3, 4], "satellit": 5, "satisfi": 5, "save": 1, "sb": 7, "sbpre": 7, "scale": [1, 2, 4, 5], "scale_factor": [1, 4, 5], "scatter": 0, "scenariomip": 3, "scenariomipbranch_method": 3, "scene": 5, "scharroo": [6, 7], "scientif": [0, 4, 6], "scm": [2, 3, 4, 5], "scott": 5, "script": [0, 1, 6], "se": 7, "sea": [3, 4], "sea_surface_height_above_geoidunit": 3, "sea_water_temperaturelong_nam": 3, "seafloor": 1, "seaic": 3, "sealevelchang": 3, "search": 5, "second": [1, 2, 3, 4, 5], "section": [2, 3, 4, 6], "see": [0, 1, 2, 3, 4, 5], "seem": 1, "seen": 7, "seismicity_2022": 4, "seismologi": 0, "sel": 3, "select": [0, 3, 6], "semi": 2, "semi_major_axi": 5, "sens": 6, "sentinel": [0, 5], "senw": 1, "sequenc": 6, "sequenti": 6, "seri": [1, 2, 3, 4, 6], "serv": 6, "server": [1, 3, 5], "session": [0, 1, 2, 3, 4, 5, 6, 7], "set": [1, 2, 3, 4, 5, 7], "seton": 1, "setup": 5, "sever": [2, 5], "sh": [6, 7], "shade": [4, 5], "shadow": 5, "shape": [1, 2], "shape_area": 2, "shape_len": 2, "shape_leng": 2, "shapefil": 2, "share": 3, "sharealik": 3, "shell": 6, "shift": [1, 4], "shift_origin": 4, "shipset": [2, 4], "shorelin": [1, 2], "short": 6, "shortcut": 1, "shorter": 2, "should": [0, 4, 7], "show": [1, 3, 5, 6, 7], "showcas": 5, "shown": 7, "shp": 2, "side": [2, 5, 6], "sign": 6, "sim4p5": 3, "similar": [2, 7], "simplifi": [3, 6], "simul": 5, "sinc": 3, "singl": [1, 6], "sis2": 3, "size": [1, 2, 3, 4, 5, 6, 7], "slice": 3, "small": [1, 2, 4, 6], "smaller": 5, "smith": [5, 6, 7], "so": [0, 1, 2, 4, 5, 6, 7], "socioeconom": 2, "soft": 5, "softwar": 6, "solid": [2, 4], "some": [1, 2, 3, 4, 5, 6], "sometim": 4, "sort": 7, "sourc": [3, 5, 6], "source_id": 3, "south": 5, "south_america_topography_05m": 4, "southeast": 5, "space": [2, 4, 6], "span": 5, "spatial": [4, 5], "spatial_ref": 5, "spatiotempor": 5, "spec": 4, "specif": [0, 1, 3, 4, 5], "specifi": [1, 2, 3, 4, 6], "speed": [3, 4, 6], "sphere": 3, "spheroid": 5, "split": [2, 4], "squar": [3, 6], "squeez": 3, "sr": 5, "srtm15": [1, 3], "srtmgl3": 3, "ssp585": 3, "ssp585external_vari": 3, "ssp5experiment_id": 3, "ssp5tracking_id": 3, "stac": 5, "standard": [1, 3, 6], "standard_nam": 3, "standardbranch_time_in_child": 3, "star": 4, "start": [0, 2, 4, 5, 6, 7], "start_i": 4, "start_x": 4, "starttim": 4, "state": 2, "static": [3, 7], "station": 5, "steelblu": 2, "steep": 5, "step": [4, 7], "step_histo": 2, "stereograph": 5, "stereographicgrid_mapping_nam": 5, "still": 6, "storag": 3, "store": [1, 2, 3, 4], "straight": 4, "strike": 4, "string": [2, 6], "structur": 5, "studi": [2, 4], "style": [2, 4], "subduct": 4, "subplot": 0, "subregion": 2, "subsect": 4, "subset": [3, 4], "subsiz": 1, "substanti": 5, "subtl": 5, "suffix": 1, "suitabl": [1, 2, 4], "summer": 1, "sun": 5, "suppli": [3, 6], "support": [1, 2], "sure": 0, "surfac": [3, 5], "surftyp": 5, "survei": 4, "svga": 6, "switch": 5, "sxga": 6, "symbol": 4, "syntax": 6, "system": [1, 2, 5], "t": [1, 4, 5, 6, 7], "t0": 7, "t1": 4, "t10": 6, "t2": 4, "t2018": 7, "t360": 6, "t_an": 3, "tab": 1, "tabl": [1, 6], "tabular": [0, 4], "take": [0, 3, 4, 6, 7], "taken": 5, "task": 6, "tbound": 3, "tc": 5, "tci": 5, "techniqu": 6, "tell": 5, "temperatur": [0, 3], "temperatureunit": 3, "tempor": 3, "temporari": [6, 7], "temporarili": 7, "tend": 0, "term": 3, "termin": 0, "termsofus": 3, "terrain": 5, "text": [0, 2, 4, 6], "than": [3, 6], "thei": [0, 6, 7], "them": [2, 5, 6, 7], "theme": 5, "themeid": 5, "therefor": [1, 2, 4], "thi": [0, 1, 2, 3, 4, 5, 6, 7], "thick": [2, 3, 4], "thing": [1, 5], "those": [3, 6], "through": [0, 3, 5], "throughout": 3, "tian": [6, 7], "tick": 5, "tif": 5, "tile": [1, 3, 5], "tile_17_33": 5, "tile_17_34": 5, "tile_58ceu": 5, "tile_58cev": 5, "tilt": 5, "time": [0, 2, 3, 4, 6, 7], "time_bnd": 3, "time_bndscalendar_typ": 3, "time_unit": 7, "timearrai": 3, "timefil": 6, "timepandasindexpandasindex": 3, "timestandard_nam": 3, "tip": 5, "titl": [1, 3, 4, 5], "tmin": 6, "tnumber": 6, "to_cr": 2, "togeth": [4, 5], "token": [0, 3], "tolympu": 5, "tonei": 1, "tong": [0, 1, 4], "too": 1, "tool": [0, 1, 2, 3, 4, 5, 6, 7], "top": [0, 1, 2, 3, 4, 5], "topograph": [1, 4], "topographi": 0, "total": 6, "totim": 5, "tozer": [1, 3], "track": 4, "track_df": 4, "tracking_id": 3, "trail": 6, "transform": 2, "transpar": [2, 4, 7], "tripel": 3, "tripleid": 3, "tripolar": 3, "trivial": 6, "troubleshoot": 6, "true": [1, 2, 3, 4, 5], "try": 4, "ttimefil": 6, "tut01_firstfigur": 0, "tut02_spe_pd_gpd": 0, "tut03_spe_xarrai": 0, "tut04_geophys": 0, "tut05_topographi": 0, "tut06_anim": 0, "twice": 4, "two": [2, 4, 5, 6, 7], "txt": [4, 7], "type": [2, 4], "typic": 5, "u": [2, 5, 6], "u2fsdgvkx1": 5, "ugrid": 3, "uhd": 6, "uieda": [6, 7], "uint8": 5, "umn": 5, "under": [3, 6], "understand": 6, "unemploi": 2, "unfold": 7, "unit": [1, 3, 4, 5, 6], "unit05": 1, "unlock": 3, "unpack": 2, "until": 7, "up": [1, 2, 4, 5, 6, 7], "updat": [3, 6], "upper": 1, "url": [2, 3], "us": [0, 1, 2, 4, 7], "usa": 3, "usabl": 2, "usainstitution_id": 3, "user": [0, 1, 6], "usg": [3, 4], "usual": 5, "utc": 4, "utcdatetim": 4, "uxga": 6, "v": [1, 2, 4, 5, 6, 7], "v0": [1, 2, 3, 4, 5], "v1": 5, "v2": [1, 3, 5], "v20180701": 3, "v20180701xarrai": 3, "v_max": [1, 4], "v_min": [1, 4], "valu": [1, 2, 3, 4, 5, 6, 7], "vari": [2, 4], "variabl": [1, 3, 6], "variable_id": 3, "variant_info": 3, "variant_label": 3, "variat": [4, 6], "vector": [2, 3, 4], "verbos": 6, "veri": [5, 6], "version": [1, 2, 3, 4, 5, 6, 7], "version_id": 3, "vertic": [1, 2, 5], "vertical_datum": 3, "via": [0, 1, 2, 3, 4, 5, 6, 7], "video": [6, 7], "view": 0, "viewer": [1, 5], "viewpoint": 5, "vik": 3, "virtual": 0, "visibl": [5, 7], "visit": 5, "visual": [2, 3, 4, 6, 7], "visualizationurl": 5, "volcano": 5, "w": [1, 5, 6, 7], "w10c": 1, "w12c": 5, "w4": 4, "w6c": 1, "w8c": 1, "wa": [3, 4, 5, 6, 7], "wai": [1, 2, 6], "wait": 6, "want": [0, 1, 2, 3, 4, 6, 7], "warn": [3, 5], "warranti": 3, "washington": 3, "water": [1, 3, 4], "we": [0, 1, 2, 3, 4, 5, 6, 7], "webm": 6, "websit": [0, 1, 2, 3, 4, 5, 6, 7], "wei": [0, 5], "welcom": 0, "well": 7, "were": [4, 5, 6], "wessel": [6, 7], "west": [3, 5], "wg": 5, "wgs84": 3, "wgs84xarrai": 3, "wgs_1984": 5, "what": [1, 4, 7], "when": [2, 4, 5, 7], "where": [0, 1, 3, 5, 6], "which": [0, 1, 2, 3, 4, 5, 6, 7], "while": [1, 4, 5, 6], "white": [2, 4, 5, 6, 7], "whiten": 7, "whole": [3, 6], "width": [1, 2, 3, 4, 5, 6], "widthxheightxdpu": 6, "window": [0, 6], "winkel": 3, "wise": 2, "wise_large_riv": 2, "within": [1, 2, 3, 4, 7], "without": [1, 3, 4, 5, 7], "without_h": 2, "woa09": 3, "woa_temp": 3, "wobb": [6, 7], "word": 6, "work": [3, 5, 6, 7], "workshop": [0, 1, 2, 3, 4, 5, 6, 7], "world": [1, 3, 5], "worldwid": 7, "would": 6, "write": [1, 6], "written": 6, "wsne": [1, 2, 5], "wsrt": 4, "www": [0, 1, 2, 3, 4, 5, 6, 7], "x": [1, 2, 3, 4, 5, 6, 7], "x0": [4, 6, 7], "x10c": [2, 4], "x27": [3, 4, 5], "x50": 7, "x_inc": [1, 4, 5], "x_max": [1, 4], "x_min": [1, 4, 5], "xa0": 3, "xa100f50": 2, "xa2000f1000": 4, "xa500f250": 4, "xactual_rang": [3, 4], "xaf": 5, "xarrai": [0, 4, 5], "xbound": 3, "xdescript": 3, "xga": 6, "xlong_nam": [3, 5], "xmax": [1, 5], "xmin": [1, 5], "xpandasindexpandasindex": 5, "xr": 3, "xyz2grd": 0, "y": [1, 2, 3, 4, 5, 6, 7], "y0": [6, 7], "y_inc": [1, 4, 5], "y_max": [1, 4], "y_min": [1, 4, 5], "ya0": 3, "ya2500": 4, "yactual_rang": [3, 4], "yaf": 5, "yarrai": [3, 5], "ybound": 3, "ydescript": 3, "year": [2, 3, 6, 7], "yearsgrid_map": 3, "ylong_nam": [3, 5], "ymax": [1, 5], "ymin": [1, 5], "yml": 0, "you": [0, 1, 2, 3, 4, 5, 6, 7], "your": [2, 3, 4, 5, 6], "your_dataset": 2, "ypandasindexpandasindex": 5, "yshift": 4, "yvonn": [0, 2, 4], "z": [1, 2, 3, 4, 5, 6, 7], "z5000": 5, "zactual_rang": [3, 4], "zip": 2, "zmax": 5, "zmin": 5, "zo": 3, "zone": 4, "zos_2015jan": 3, "zos_2100dec": 3, "zosstandard_nam": 3, "zosvariant_info": 3, "zposit": 3, "zscale": 5, "zsh": 6, "zsize": 5, "zuber": 5, "zunit": 5, "zvalu": 2}, "titles": ["Mastering Geospatial Visualizations with GMT/PyGMT", "Tutorial 1 - First figure \ud83d\ude80 and Subplots / layout", "Tutorial 2 - scientific Python ecosystem \ud83d\udc0d: pandas and GeoPandas (tabular data \ud83d\uddd2\ufe0f)", "Tutorial 3 - scientific Python ecosystem \ud83d\udc0d: Xarray (gridded data \ud83c\udf10)", "Tutorial 4 - Geophysics (Seismology) \ud83c\udf0e\ud83c\udf0f\ud83c\udf0d", "Tutorial 5 - 3-D Topography (Planetary / Antarctic maps) \ud83c\udfd4\ufe0f", "Tutorial 6 - Animations with GMT \ud83c\udfa6", "Tutorial 6 - Animations with GMT \ud83c\udfa6 (extended)"], "titleterms": {"0": [1, 2, 3, 4, 5], "1": [1, 2, 3, 4, 5, 6, 7], "2": [1, 2, 3, 4, 5, 6, 7], "3": [1, 2, 3, 4, 5, 6, 7], "4": [1, 2, 3, 4, 6, 7], "5": [1, 3, 4, 5, 6, 7], "6": [3, 4, 6, 7], "The": [6, 7], "ad": 1, "add": [1, 4], "addit": [2, 4], "along": 4, "also": [6, 7], "an": 6, "anim": [6, 7], "antarct": 5, "approach": 1, "attempt": [6, 7], "background": 7, "basic": 1, "beachbal": 4, "canva": [1, 6], "cartesian": [2, 4], "choos": 4, "choropleth": 2, "cloud": 3, "coast": 1, "coastlin": 1, "code": 2, "color": [1, 2], "colorbar": 1, "comment": [2, 4], "contour": 4, "creat": [0, 1, 2, 4], "custom": 1, "d": 5, "data": [2, 3, 4, 5], "datafram": 2, "dataset": 1, "dem": 5, "differ": 2, "digit": 5, "directli": 3, "download": [1, 3], "draft": [6, 7], "drape": 5, "draw": 1, "earth": 6, "earthquak": [6, 7], "ecosystem": [2, 3], "element": 1, "elev": [4, 5], "enhanc": 7, "environ": 0, "epicent": 2, "event": 7, "extend": 7, "featur": 4, "figur": [1, 4], "first": [1, 6, 7], "fix": 6, "frame": [1, 6, 7], "from": 3, "full": [6, 7], "gener": [2, 4], "geodatafram": 2, "geograph": 2, "geometri": 2, "geopanda": 2, "geophys": 4, "geospati": 0, "get": [3, 5], "global": 1, "gmt": [0, 1, 6, 7], "goal": [6, 7], "grdcontour": 4, "grdimag": 1, "grdtrack": 4, "grdview": 5, "grid": [1, 3, 4], "histogram": 2, "how": [6, 7], "i": [3, 6], "imag": [5, 6, 7], "imageri": 5, "import": 1, "inform": [6, 7], "introduct": 6, "last": 7, "layout": 1, "length": 2, "line": 2, "load": 3, "local": 0, "make": [6, 7], "makecpt": 1, "map": [1, 2, 4, 5], "mar": 5, "master": [0, 6, 7], "model": 5, "modul": 7, "mosaic": 5, "movi": 6, "multi": 1, "number": 6, "open": 3, "orient": [2, 4], "overview": 0, "panda": 2, "panel": 1, "paramet": 6, "planetari": 5, "plot": [2, 3, 4], "polygon": 2, "prepar": 4, "prerequisit": 6, "process": 3, "profil": 4, "project": [1, 4], "pygmt": [0, 1, 3, 4], "python": [2, 3], "raster": 3, "refer": [6, 7], "relief": 5, "rgb": 5, "river": 2, "run": 0, "scatter": 2, "scientif": [2, 3], "script": 7, "second": [6, 7], "see": [6, 7], "seismic": 4, "seismologi": 4, "set": [0, 6], "set_panel": 1, "show": [2, 4], "spatial": 2, "spin": 6, "stack": 1, "start": [1, 3], "step": 6, "stuff": [2, 4], "subplot": 1, "subset": 2, "suggest": [2, 4], "symbol": 7, "tabular": 2, "technic": [6, 7], "third": 7, "tick": 1, "topographi": 5, "tutori": [0, 1, 2, 3, 4, 5, 6, 7], "type": [1, 6], "up": 0, "us": [3, 5, 6], "view": 5, "visual": [0, 1, 5], "what": [3, 6], "why": [3, 6], "xarrai": 3, "xyz2grd": 4, "your": [0, 1], "zoom": 5}}) \ No newline at end of file diff --git a/tut02_spe_pd_gpd.html b/tut02_spe_pd_gpd.html index 61a7b10..ff20edb 100644 --- a/tut02_spe_pd_gpd.html +++ b/tut02_spe_pd_gpd.html @@ -501,6 +501,7 @@

0️⃣ General stuff
import geopandas as gpd
+import pandas as pd
 import pygmt
 
 # Use a resolution of only 150 dpi for the images within the Jupyter notebook, to keep the file small
@@ -514,11 +515,14 @@ 

0️⃣ General stuffpandas#

1.1 Tabular data - pandas.DataFrame#

-

Use an example dataset with tabular data provided by PyGMT and load it into a pandas.DataFrame. This dataset contains earthquakes in the area of Japan.

+

Use an example dataset with tabular data provided by PyGMT and load it into a pandas.DataFrame. This dataset contains earthquakes in the area of Japan. +You can read your own dataset into a pandas.Dataframe using pandas.read_csv and use it in the same way to make the following plots; of course you have to adjust the column names accordantly.

df_jp_eqs = pygmt.datasets.load_sample_data(name="japan_quakes")
 df_jp_eqs.head()
+
+# df_your_dataset = pd.read_csv("your_dataset.csv")
 
@@ -708,6 +712,12 @@

2.1 Line geometry

2.1.1 Spatial Data - geopandas.GeoDataFrame with line geometry#

First we download some data into in a geopandas.GeoDataFrame. This dataset contains European rivers with their lengths and names.

+

In case you face issues with downloading these data:

+
    +
  1. Copy the URL “https://www.eea.europa.eu/data-and-maps/data/wise-large-rivers-and-large-lakes/zipped-shapefile-with-wise-large-rivers-vector-line/zipped-shapefile-with-wise-large-rivers-vector-line/at_download/file/wise_large_rivers.zip” into your browser.

  2. +
  3. Download the zip file and place it into ~/agu24workshop/book. Do not unpack the ZIP file.

  4. +
  5. Replace the URL with the filename of the ZIP file “wise_large_rivers.zip” in geopandas.read_file.

  6. +
gpd_rivers_org = gpd.read_file(
@@ -715,6 +725,7 @@ 

2.1.1 Spatial Data - + "zipped-shapefile-with-wise-large-rivers-vector-line/zipped-shapefile-with-wise-large-rivers-vector-line/" + "at_download/file/wise_large_rivers.zip" ) +# gpd_rivers_org = pd.read_file("wise_large_rivers.zip") gpd_rivers_org.head()

diff --git a/tut03_spe_xarray.html b/tut03_spe_xarray.html index ee9a681..fb8b88a 100644 --- a/tut03_spe_xarray.html +++ b/tut03_spe_xarray.html @@ -519,77 +519,424 @@

2️⃣ Getting started
gmtread [NOTICE]:   -> Download grid file [112K]: earth_relief_01d_g.grd
 

-
gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer
-
-
-
gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd
-
-
-
gmtread [NOTICE]:   -> Download grid file [112K]: earth_relief_01d_g.grd
-
-
-
gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer
-
-
-
gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd
-
-
-
gmtread [ERROR]: File @earth_relief_01d_g.grd not found
-
-
-
[Session pygmt-session (3)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16)
-
-
-
---------------------------------------------------------------------------
-GMTCLibError                              Traceback (most recent call last)
-Cell In[2], line 2
-      1 with pygmt.config(GMT_DATA_SERVER="NOAA"):
-----> 2     grid = pygmt.datasets.load_earth_relief(resolution="01d")
-      3 grid
-
-File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/datasets/earth_relief.py:176, in load_earth_relief(resolution, region, registration, data_source, use_srtm)
-    174     case "gebco" | "gebcosi":
-    175         name = "earth_gebco"
---> 176 grid = _load_remote_dataset(
-    177     name=name,
-    178     prefix=prefix,
-    179     resolution=resolution,
-    180     region=region,
-    181     registration=registration,
-    182 )
-    183 return grid
-
-File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/helpers/decorators.py:773, in kwargs_to_strings.<locals>.converter.<locals>.new_module(*args, **kwargs)
-    770             bound.arguments["kwargs"][arg] = newvalue
-    772 # Execute the original function and return its output
---> 773 return module_func(*bound.args, **bound.kwargs)
-
-File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/datasets/load_remote_dataset.py:416, in _load_remote_dataset(name, prefix, resolution, region, registration)
-    414 with Session() as lib:
-    415     with lib.virtualfile_out(kind="grid") as voutgrd:
---> 416         lib.call_module(
-    417             module="read",
-    418             args=[fname, voutgrd, *build_arg_list(kwdict)],
-    419         )
-    420         grid = lib.virtualfile_to_raster(outgrid=None, vfname=voutgrd)
-    422 # Full path to the grid if not tiled grids.
-
-File ~/micromamba/envs/agu24workshop/lib/python3.12/site-packages/pygmt/clib/session.py:656, in Session.call_module(self, module, args)
-    654 status = c_call_module(self.session_pointer, module.encode(), mode, argv)
-    655 if status != 0:
---> 656     raise GMTCLibError(
-    657         f"Module '{module}' failed with status code {status}:\n{self._error_message}"
-    658     )
-
-GMTCLibError: Module 'read' failed with status code 16:
-gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer
-gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd
-gmtread [ERROR]: Libcurl Error: Failure when receiving data from the peer
-gmtread [ERROR]: Unable to obtain remote file @earth_relief_01d_g.grd
-gmtread [ERROR]: File @earth_relief_01d_g.grd not found
-
-
-
+
+ + + + + + + + + + + + + + +
<xarray.DataArray 'z' (lat: 181, lon: 361)> Size: 523kB
+array([[ 2865. ,  2865. ,  2865. , ...,  2865. ,  2865. ,  2865. ],
+       [ 3088. ,  3087.5,  3087. , ...,  3088.5,  3088. ,  3088. ],
+       [ 3100.5,  3100.5,  3101. , ...,  3101.5,  3101. ,  3100.5],
+       ...,
+       [-3745.5, -3731. , -3723. , ..., -3734. , -3741.5, -3745.5],
+       [-2939.5, -2945. , -2950.5, ..., -2895. , -2921. , -2939.5],
+       [-3861. , -3861. , -3861. , ..., -3861. , -3861. , -3861. ]])
+Coordinates:
+  * lat      (lat) float64 1kB -90.0 -89.0 -88.0 -87.0 ... 87.0 88.0 89.0 90.0
+  * lon      (lon) float64 3kB -180.0 -179.0 -178.0 -177.0 ... 178.0 179.0 180.0
+Attributes:
+    Conventions:       CF-1.7
+    title:             SRTM15 Earth Relief v2.6 at 01 arc degree
+    history:           
+    description:       IGPP Earth relief
+    long_name:         elevation (m)
+    units:             meters
+    vertical_datum:    EGM96
+    horizontal_datum:  WGS84

@@ -603,6 +950,9 @@

3️⃣ Plotting raster data +_images/9b5d8ab02e64296adc3751b52ac5dd07110ce7abd0e54537ed109c6c46717c5f.png +

@@ -618,6 +968,440 @@

4️⃣ Processing raster data +
grdblend [NOTICE]: Remote data courtesy of GMT data server oceania [http://oceania.generic-mapping-tools.org]
+
+
+
grdblend [NOTICE]: Earth Relief at 3x3 arc seconds tiles provided by SRTMGL3 (land only) [NASA/USGS].
+
+
+
grdblend [NOTICE]:   -> Download 1x1 degree grid tile (earth_relief_03s_g): N37W120
+
+
+
+ + + + + + + + + + + + + + +
<xarray.DataArray 'z' (lat: 271, lon: 511)> Size: 1MB
+array([[-0.30839247, -0.37808514, -0.30799666, ...,  0.12039052,
+         0.20474193, -0.17929687],
+       [-0.09469072, -0.3017121 , -0.31324536, ...,  0.0442035 ,
+         0.06209851, -0.07466871],
+       [-0.95000005, -0.95000005, -0.26423818, ...,  0.04321925,
+         0.03116445,  0.13370842],
+       ...,
+       [-0.44154865, -0.31297821, -0.20481637, ..., -0.1700097 ,
+        -0.22448991, -0.25389677],
+       [-0.74398577, -0.27561006, -0.31929246, ..., -0.1227859 ,
+        -0.1983598 , -0.20921303],
+       [-0.42644808, -0.35136998, -0.39577812, ..., -0.04772562,
+        -0.19724692, -0.21158722]])
+Coordinates:
+  * lat      (lat) float64 2kB 37.6 37.6 37.6 37.6 ... 37.82 37.82 37.82 37.83
+  * lon      (lon) float64 4kB -119.8 -119.8 -119.8 ... -119.4 -119.4 -119.4
+Attributes:
+    Conventions:   CF-1.7
+    title:         Produced by grdgradient
+    history:       gmt grdgradient @GMTAPI@-S-I-G-M-G-N-000000 -E270/30 -G@GM...
+    description:   Lambertian radiance
+    long_name:     z
+    actual_range:  [ 508. 3533.]

Let’s plot the result using the same grdimage function shared earlier, this time using a custom colormap.

@@ -649,6 +5916,416 @@

5️⃣ Download data and load with Xarray +
+ + + + + + + + + + + + + + +
<xarray.Dataset> Size: 9MB
+Dimensions:  (lat: 180, depth: 33, lon: 360)
+Coordinates:
+  * lat      (lat) float32 720B -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
+  * depth    (depth) float32 132B 0.0 10.0 20.0 30.0 ... 4.5e+03 5e+03 5.5e+03
+  * lon      (lon) float32 1kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
+    time     datetime64[ns] 8B 2008-01-01
+Data variables:
+    t_an     (depth, lat, lon) float32 9MB ...

@@ -678,6 +6361,464 @@

6️⃣ Open data directly from the cloud +
+ + + + + + + + + + + + + + +
<xarray.Dataset> Size: 268MB
+Dimensions:    (lat: 180, bnds: 2, lon: 360, time: 1032)
+Coordinates:
+  * lat        (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
+    lat_bnds   (lat, bnds) float64 3kB ...
+  * lon        (lon) float64 3kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
+    lon_bnds   (lon, bnds) float64 6kB ...
+  * time       (time) object 8kB 2015-01-16 12:00:00 ... 2100-12-16 12:00:00
+    time_bnds  (time, bnds) object 17kB ...
+Dimensions without coordinates: bnds
+Data variables:
+    zos        (time, lat, lon) float32 267MB ...
+Attributes: (12/49)
+    Conventions:            CF-1.7 CMIP-6.0 UGRID-1.0
+    activity_id:            ScenarioMIP
+    branch_method:          standard
+    branch_time_in_child:   60225.0
+    branch_time_in_parent:  60225.0
+    comment:                <null ref>
+    ...                     ...
+    tracking_id:            hdl:21.14100/21c772eb-064e-4c75-8e16-da95bbfd29b7...
+    variable_id:            zos
+    variant_info:           N/A
+    variant_label:          r1i1p1f1
+    netcdf_tracking_ids:    hdl:21.14100/21c772eb-064e-4c75-8e16-da95bbfd29b7...
+    version_id:             v20180701

Calculate the different in sea level between a date in 2100 and 2015

diff --git a/tut04_geophysics.html b/tut04_geophysics.html index 1ed0160..dbb8be5 100644 --- a/tut04_geophysics.html +++ b/tut04_geophysics.html @@ -964,15 +964,15 @@

1️⃣ Prepare gridded data: diff --git a/tut05_topography.html b/tut05_topography.html index 9e27371..e0ce88a 100644 --- a/tut05_topography.html +++ b/tut05_topography.html @@ -904,13 +904,13 @@

0️⃣ Mars relief data + dtype='float64', name='lon', length=361))
  • Conventions :
    CF-1.7
    title :
    MOLA Mars Relief at 01 arc degree
    history :
    description :
    NASA Mars (MOLA) relief
    long_name :
    elevation (m)
    units :
    meters
  • 0.1 2-D map view#

    @@ -1370,14 +1370,14 @@

    0.2 Zoomed in view
    @@ -1992,7 +1992,7 @@

    2.2 Getting RGB imagery + dtype='float64', name='y', length=2188))

  • OVR_RESAMPLING_ALG :
    AVERAGE
    AREA_OR_POINT :
    Area
    scale_factor :
    1.0
    add_offset :
    0.0
    _FillValue :
    0
  • Tip