{ "cells": [ { "cell_type": "markdown", "id": "0c8d2593", "metadata": {}, "source": [ "# Glidertest demo " ] }, { "cell_type": "markdown", "id": "97e9729d-4db2-419c-bbc2-a2078fc9b7dc", "metadata": {}, "source": [ "\n", "The purpose of this notebook is to demostrate the functionality of glidertests functions. \n", "This notebook can be used to diagnose issues within your glider data. We have added suggested processing in some cases.\n", "\n", "The demo notebook is roughly organised as follows:\n", "\n", "- Load dataset\n", "- Generate overview\n", "\n", "And then sections divided by sensors or computed values\n", "- CTD\n", "- Dissolved oxygen\n", "- Bio-optics (e.g., WETLabs)\n", "- Photosynthetically active radiation (PAR)\n", "- Vertical velocity (from a flight model)\n", "\n", "At the end, we show of you can modify, add and merge the various plots in different ways." ] }, { "cell_type": "code", "execution_count": 1, "id": "429c3105", "metadata": { "execution": { "iopub.execute_input": "2025-03-05T14:32:55.041064Z", "iopub.status.busy": "2025-03-05T14:32:55.040903Z", "iopub.status.idle": "2025-03-05T14:32:56.234530Z", "shell.execute_reply": "2025-03-05T14:32:56.234001Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/runner/work/glidertest/glidertest/glidertest/plots.py:1253: SyntaxWarning: invalid escape sequence '\\D'\n", " ax[1].set_xlabel(f'Absolute difference = |$\\Delta$| \\n({ds[var].units})')\n" ] } ], "source": [ "import matplotlib.pyplot as plt\n", "import numpy as np\n", "from glidertest import fetchers\n", "from glidertest import tools, utilities, plots\n", "from ioos_qc import qartod" ] }, { "cell_type": "markdown", "id": "dd041858-c498-4654-a7c8-1731beb839fc", "metadata": {}, "source": [ "## Load dataset\n", "\n", "Load an example dataset using `glidertest.fetchers.load_sample_dataset`\n", "\n", "Alternatively, use your own with e.g. `ds = xr.open_dataset('/path/to/yourfile.nc')`" ] }, { "cell_type": "code", "execution_count": 2, "id": "c336267e-b924-4bcf-937a-5f0c11857da2", "metadata": { "execution": { "iopub.execute_input": "2025-03-05T14:32:56.236328Z", "iopub.status.busy": "2025-03-05T14:32:56.236038Z", "iopub.status.idle": "2025-03-05T14:32:57.701197Z", "shell.execute_reply": "2025-03-05T14:32:57.700642Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Downloading file 'sea045_20230604T1253_delayed.nc' from 'https://erddap.observations.voiceoftheocean.org/examples/glidertest/sea045_20230604T1253_delayed.nc' to '/home/runner/.cache/glidertest'.\n" ] } ], "source": [ "ds = fetchers.load_sample_dataset()" ] }, { "cell_type": "markdown", "id": "6f0be010-d06a-4d24-bc0d-1479ebb76169", "metadata": {}, "source": [ "### Other example datasets\n", "\n", "Several other example datasets are available, though they do not have all of the variables required to run the functions in this notebook. Uncomment lines in the following cell to use them" ] }, { "cell_type": "code", "execution_count": 3, "id": "258b96cf-d9fd-4cfe-96da-32e95868bc40", "metadata": { "execution": { "iopub.execute_input": "2025-03-05T14:32:57.703309Z", "iopub.status.busy": "2025-03-05T14:32:57.702938Z", "iopub.status.idle": "2025-03-05T14:32:57.705530Z", "shell.execute_reply": "2025-03-05T14:32:57.705047Z" } }, "outputs": [], "source": [ "#ds = fetchers.load_sample_dataset(dataset_name=\"sea055_20220104T1536_delayed.nc\") # Full SeaExplorer mission in the Baltic\n", "#ds = fetchers.load_sample_dataset(dataset_name=\"sg015_20050213T230253_delayed.nc\") # Seaglider data\n", "#ds = fetchers.load_sample_dataset(dataset_name=\"sg014_20040924T182454_delayed.nc\") # Full Seaglider mission in the Labrador Sea\n", "#ds = fetchers.load_sample_dataset(dataset_name=\"sg014_20040924T182454_delayed_subset.nc\") #Subset of a full Seaglider mission in the Labrador Sea\n" ] }, { "cell_type": "code", "execution_count": 4, "id": "f4f1eb80-1e06-45ec-afbf-7b589d46779b", "metadata": { "execution": { "iopub.execute_input": "2025-03-05T14:32:57.707317Z", "iopub.status.busy": "2025-03-05T14:32:57.706897Z", "iopub.status.idle": "2025-03-05T14:32:57.722608Z", "shell.execute_reply": "2025-03-05T14:32:57.722196Z" } }, "outputs": [ { "data": { "text/html": [ "
<xarray.Dataset> Size: 7MB\n", "Dimensions: (N_MEASUREMENTS: 31232)\n", "Coordinates:\n", " TIME (N_MEASUREMENTS) datetime64[ns] 250kB ...\n", " LATITUDE (N_MEASUREMENTS) float64 250kB ...\n", " LONGITUDE (N_MEASUREMENTS) float64 250kB ...\n", " DEPTH (N_MEASUREMENTS) float32 125kB ...\n", "Dimensions without coordinates: N_MEASUREMENTS\n", "Data variables: (12/63)\n", " ALTIMETER (N_MEASUREMENTS) float64 250kB ...\n", " BBP700 (N_MEASUREMENTS) float32 125kB ...\n", " CHLA (N_MEASUREMENTS) float32 125kB ...\n", " CHLA_QC (N_MEASUREMENTS) int8 31kB ...\n", " CNDC (N_MEASUREMENTS) float32 125kB ...\n", " CNDC_QC (N_MEASUREMENTS) int8 31kB ...\n", " ... ...\n", " PHASE (N_MEASUREMENTS) float32 125kB ...\n", " SENSOR_ADVS_AND_TURBULENCE_PROBES_101136 float32 4B ...\n", " SENSOR_CTD_205048 float32 4B ...\n", " SENSOR_RADIOMETERS_2984 float32 4B ...\n", " SENSOR_FLUOROMETERS_6598 float32 4B ...\n", " SENSOR_DISSOLVED_GAS_SENSORS_0058 float32 4B ...\n", "Attributes: (12/24)\n", " glider_serial: 45\n", " dataset_id: delayed_SEA045_M79\n", " contributor_name: Callum Rollo, Louise Biddle, ...\n", " comment: Altitude set to 2m for the en...\n", " id: sea045_20230604T1253_delayed\n", " title: OceanGliders example file for...\n", " ... ...\n", " data_url: https://erddap.observations.v...\n", " rtqc_method: IOOS QC QARTOD https://github...\n", " rtqc_method_doi: None\n", " featureType: trajectory\n", " Conventions: CF-1.10, OG-1.0\n", " start_date: 20230604T1253
\n", " | dc | \n", "cd | \n", "depth | \n", "
---|---|---|---|
0 | \n", "NaN | \n", "0.000391 | \n", "0.107222 | \n", "
1 | \n", "NaN | \n", "-0.001706 | \n", "1.107222 | \n", "
2 | \n", "-0.010819 | \n", "0.006196 | \n", "2.107222 | \n", "
3 | \n", "-0.007883 | \n", "0.011102 | \n", "3.107222 | \n", "
4 | \n", "-0.008645 | \n", "0.011410 | \n", "4.107222 | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "
77 | \n", "0.011868 | \n", "-0.014837 | \n", "77.107226 | \n", "
78 | \n", "0.010810 | \n", "-0.012976 | \n", "78.107226 | \n", "
79 | \n", "0.000773 | \n", "-0.002994 | \n", "79.107226 | \n", "
80 | \n", "0.001013 | \n", "-0.010982 | \n", "80.107226 | \n", "
81 | \n", "NaN | \n", "NaN | \n", "81.107226 | \n", "
82 rows × 3 columns
\n", "\n", " | batch | \n", "depth | \n", "dat | \n", "date | \n", "
---|---|---|---|---|
0 | \n", "0.0 | \n", "0.0 | \n", "12.055072 | \n", "2023-06-04 | \n", "
1 | \n", "0.0 | \n", "1.0 | \n", "12.065854 | \n", "2023-06-04 | \n", "
2 | \n", "0.0 | \n", "2.0 | \n", "11.984293 | \n", "2023-06-04 | \n", "
3 | \n", "0.0 | \n", "3.0 | \n", "11.843248 | \n", "2023-06-04 | \n", "
4 | \n", "0.0 | \n", "4.0 | \n", "11.793981 | \n", "2023-06-04 | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
77 | \n", "0.0 | \n", "77.0 | \n", "8.474310 | \n", "2023-06-04 | \n", "
78 | \n", "0.0 | \n", "78.0 | \n", "8.478616 | \n", "2023-06-04 | \n", "
79 | \n", "0.0 | \n", "79.0 | \n", "8.492355 | \n", "2023-06-04 | \n", "
80 | \n", "0.0 | \n", "80.0 | \n", "8.504098 | \n", "2023-06-04 | \n", "
81 | \n", "0.0 | \n", "81.0 | \n", "8.505873 | \n", "2023-06-04 | \n", "
82 rows × 4 columns
\n", "