{ "cells": [ { "cell_type": "markdown", "id": "c6a29764-f39c-431c-8e77-fbc6bfe20f01", "metadata": {}, "source": [ "# seagliderOG1 demo\n", "\n", "The purpose of this notebook is to demonstrate the functionality of `seagliderOG1` to convert from Seaglider basestation files to OG1 format.\n", "\n", "- OG1 format is a newly agreed format (since June 2024) for glider data sets from various platforms (e.g., Seaglider, Slocum, Seaexplorer). It lives on github here: (https://github.com/OceanGlidersCommunity/OG-format-user-manual).\n", "- OG1 manual: https://oceangliderscommunity.github.io/OG-format-user-manual/OG_Format.html\n", "\n", "The test case is to convert sg015 data from the Labrador Sea in September 2004.\n", "\n", "The demo is organised to show\n", "\n", "- Conversion of a single dive cycle (single `p*.nc` file)\n", "\n", "- Conversion for a folder of local dive-cycle files (full mission of `p*.nc` files)\n", "\n", "- Download from remote server + conversion (directory with full mission of `p*.nc` files)\n", "\n", "Options are provided to only load e.g. 10 files, but note that OG1 format expects a full mission.\n" ] }, { "cell_type": "code", "execution_count": 1, "id": "6a1920f3", "metadata": { "execution": { "iopub.execute_input": "2025-01-31T13:53:05.851220Z", "iopub.status.busy": "2025-01-31T13:53:05.850840Z", "iopub.status.idle": "2025-01-31T13:53:07.360578Z", "shell.execute_reply": "2025-01-31T13:53:07.360023Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/home/runner/work/seagliderOG1/seagliderOG1\n", "['/home/runner/micromamba/envs/TEST/lib/python312.zip', '/home/runner/micromamba/envs/TEST/lib/python3.12', '/home/runner/micromamba/envs/TEST/lib/python3.12/lib-dynload', '', '/home/runner/micromamba/envs/TEST/lib/python3.12/site-packages', '/home/runner/work/seagliderOG1/seagliderOG1', '/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1']\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/tools.py:549: SyntaxWarning: invalid escape sequence '\\d'\n", " fill_val = 2 ** (int(re.findall(\"\\d+\", str(new_dtype))[0]) - 1) - 1\n" ] } ], "source": [ "import pathlib\n", "import sys\n", "\n", "script_dir = pathlib.Path().parent.absolute()\n", "parent_dir = script_dir.parents[0]\n", "sys.path.append(str(parent_dir))\n", "sys.path.append(str(parent_dir) + '/seagliderOG1')\n", "print(parent_dir)\n", "print(sys.path)\n", "\n", "import xarray as xr\n", "import os\n", "import pooch\n", "from seagliderOG1 import readers, writers, plotters, tools\n", "from seagliderOG1 import convertOG1, vocabularies\n" ] }, { "cell_type": "code", "execution_count": null, "id": "e6095e63", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 2, "id": "1e070d18", "metadata": { "execution": { "iopub.execute_input": "2025-01-31T13:53:07.362537Z", "iopub.status.busy": "2025-01-31T13:53:07.362067Z", "iopub.status.idle": "2025-01-31T13:53:07.364737Z", "shell.execute_reply": "2025-01-31T13:53:07.364333Z" } }, "outputs": [], "source": [ "# Specify the path for writing datafiles\n", "data_path = os.path.join(parent_dir, 'data')" ] }, { "cell_type": "markdown", "id": "803e373a", "metadata": {}, "source": [ "## Reading basestation files\n", "\n", "This has three ways to load a glider dataset.\n", "\n", "Load an example dataset using `seagliderOG1.fetchers.load_sample_dataset`\n", "\n", "Alternatively, use your own with e.g. `ds = xr.open_dataset('/path/to/yourfile.nc')`" ] }, { "cell_type": "markdown", "id": "02c414b4", "metadata": {}, "source": [ "### Load single sample dataset" ] }, { "cell_type": "code", "execution_count": 3, "id": "05ca56cf", "metadata": { "execution": { "iopub.execute_input": "2025-01-31T13:53:07.366444Z", "iopub.status.busy": "2025-01-31T13:53:07.366122Z", "iopub.status.idle": "2025-01-31T13:53:07.664566Z", "shell.execute_reply": "2025-01-31T13:53:07.664059Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Downloading file 'p0330015_20100906.nc' from 'https://www.ncei.noaa.gov/data/oceans/glider/seaglider/uw/033/20100903/p0330015_20100906.nc' to '/home/runner/.cache/seagliderOG1'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/readers.py:58: FutureWarning: In a future version of xarray decode_timedelta will default to False rather than None. To silence this warning, set decode_timedelta to True, False, or a 'CFTimedeltaCoder' instance.\n", " return xr.open_dataset(file_path)\n", "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/readers.py:58: FutureWarning: In a future version of xarray decode_timedelta will default to False rather than None. To silence this warning, set decode_timedelta to True, False, or a 'CFTimedeltaCoder' instance.\n", " return xr.open_dataset(file_path)\n", "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/readers.py:58: FutureWarning: In a future version of xarray decode_timedelta will default to False rather than None. To silence this warning, set decode_timedelta to True, False, or a 'CFTimedeltaCoder' instance.\n", " return xr.open_dataset(file_path)\n", "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/readers.py:58: FutureWarning: In a future version of xarray decode_timedelta will default to False rather than None. To silence this warning, set decode_timedelta to True, False, or a 'CFTimedeltaCoder' instance.\n", " return xr.open_dataset(file_path)\n", "/home/runner/work/seagliderOG1/seagliderOG1/seagliderOG1/readers.py:58: FutureWarning: In a future version of xarray decode_timedelta will default to False rather than None. To silence this warning, set decode_timedelta to True, False, or a 'CFTimedeltaCoder' instance.\n", " return xr.open_dataset(file_path)\n" ] }, { "data": { "text/html": [ "
<xarray.Dataset> Size: 290kB\n", "Dimensions: (sg_data_point: 586,\n", " gc_event: 36, gc_state: 10,\n", " gps_info: 3, trajectory: 1)\n", "Coordinates:\n", " ctd_time (sg_data_point) datetime64[ns] 5kB ...\n", " longitude (sg_data_point) float64 5kB ...\n", " latitude (sg_data_point) float64 5kB ...\n", " ctd_depth (sg_data_point) float64 5kB ...\n", " * trajectory (trajectory) int32 4B 15\n", "Dimensions without coordinates: sg_data_point, gc_event, gc_state, gps_info\n", "Data variables: (12/397)\n", " salinity_qc (sg_data_point) |S1 586B ...\n", " eng_depth (sg_data_point) float64 5kB ...\n", " eng_aa4330_Temp (sg_data_point) float64 5kB ...\n", " eng_vbdCC (sg_data_point) float64 5kB ...\n", " north_displacement (sg_data_point) float64 5kB ...\n", " east_displacement (sg_data_point) float64 5kB ...\n", " ... ...\n", " sg_cal_optode_FoilCoefB0 float64 8B ...\n", " log_MISSION int32 4B ...\n", " log_FG_AHR_24V float64 8B ...\n", " log_ICE_FREEZE_MARGIN float64 8B ...\n", " surface_curr_north float64 8B ...\n", " log_RAFOS_DEVICE float64 8B ...\n", "Attributes: (12/59)\n", " quality_control_version: 1.12\n", " base_station_micro_version: 4935\n", " time_coverage_resolution: PT1S\n", " geospatial_vertical_max: 511.8935394557861\n", " sea_name: Caribbean Sea\n", " mission: 1\n", " ... ...\n", " source: Deepglider SG033\n", " geospatial_vertical_min: 0.2601223952664329\n", " creator_url: http://iop.apl.washington.edu/seaglider/...\n", " geospatial_vertical_units: meter\n", " dive_number: 15\n", " disclaimer: Data has not been reviewed and is provid...
<xarray.Dataset> Size: 290kB\n", "Dimensions: (sg_data_point: 586,\n", " gc_event: 36, gc_state: 10,\n", " gps_info: 3, trajectory: 1)\n", "Coordinates:\n", " ctd_time (sg_data_point) datetime64[ns] 5kB ...\n", " longitude (sg_data_point) float64 5kB ...\n", " latitude (sg_data_point) float64 5kB ...\n", " ctd_depth (sg_data_point) float64 5kB ...\n", " * trajectory (trajectory) int32 4B 15\n", "Dimensions without coordinates: sg_data_point, gc_event, gc_state, gps_info\n", "Data variables: (12/397)\n", " salinity_qc (sg_data_point) |S1 586B ...\n", " eng_depth (sg_data_point) float64 5kB ...\n", " eng_aa4330_Temp (sg_data_point) float64 5kB ...\n", " eng_vbdCC (sg_data_point) float64 5kB ...\n", " north_displacement (sg_data_point) float64 5kB ...\n", " east_displacement (sg_data_point) float64 5kB ...\n", " ... ...\n", " sg_cal_optode_FoilCoefB0 float64 8B ...\n", " log_MISSION int32 4B ...\n", " log_FG_AHR_24V float64 8B ...\n", " log_ICE_FREEZE_MARGIN float64 8B ...\n", " surface_curr_north float64 8B ...\n", " log_RAFOS_DEVICE float64 8B ...\n", "Attributes: (12/59)\n", " quality_control_version: 1.12\n", " base_station_micro_version: 4935\n", " time_coverage_resolution: PT1S\n", " geospatial_vertical_max: 511.8935394557861\n", " sea_name: Caribbean Sea\n", " mission: 1\n", " ... ...\n", " source: Deepglider SG033\n", " geospatial_vertical_min: 0.2601223952664329\n", " creator_url: http://iop.apl.washington.edu/seaglider/...\n", " geospatial_vertical_units: meter\n", " dive_number: 15\n", " disclaimer: Data has not been reviewed and is provid...