diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..21b496b --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,13 @@ +# Dependabot config to enable checking for version updates on actions +# and open pull requests to apply those updates +# refs: +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" diff --git a/.github/workflows/assign-issue-pr.yaml b/.github/workflows/assign-issue-pr.yaml new file mode 100644 index 0000000..cedc780 --- /dev/null +++ b/.github/workflows/assign-issue-pr.yaml @@ -0,0 +1,17 @@ +name: Assign Issue/PR +on: + issues: + types: + - reopened + - opened + pull_request: + types: + - reopened + - opened +jobs: + auto_assign: + permissions: + issues: write + pull-requests: write + uses: UBC-MOAD/gha-workflows/.github/workflows/auto-assign.yaml@main + \ No newline at end of file diff --git a/.github/workflows/check-datasets-xml.yaml b/.github/workflows/check-datasets-xml.yaml new file mode 100644 index 0000000..e68e63a --- /dev/null +++ b/.github/workflows/check-datasets-xml.yaml @@ -0,0 +1,35 @@ +name: check-datasets-xml + +on: + push: + branches: [ '*' ] + +jobs: + check-datasets-xml: + permissions: + contents: read + pull-requests: write + strategy: + fail-fast: false + matrix: + python-version: [ '3.12' ] + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Conda environment with Micromamba + uses: mamba-org/setup-micromamba@54d4d5980e1a4aa7cdc8b050cf2d19b7e262ce18 + with: + environment-file: envs/environment-test.yaml + environment-name: erddap-datasets-test + cache-environment: true + cache-downloads: true + # persist downloads cache for 1 day + cache-downloads-key: downloads-${{ steps.date.outputs.date }} + create-args: >- + python=${{ inputs.python-version }} + + - name: Run check_datasets_xml.py + run: python check_datasets_xml.py + shell: bash -el {0} diff --git a/.gitignore b/.gitignore index 3ef1139..6932e14 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,300 @@ +# Created by .ignore support plugin (hsz.mobi) + +## IntelliJ project files +.idea +*.iml +out +gen + + +### Python template +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + + +### macOS template +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### VisualStudioCode template +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + + +### Backup template +*.bak +*.gho +*.ori +*.orig +*.tmp + + +### Vim template +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist *~ -fragments/ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + + +### Windows template +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + + +### Emacs template +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +### Linux template +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9bd50de --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,10 @@ +{ + "cSpell.words": [ + "erddap", + "jupyterlab", + "lxml", + "pyyaml", + "structlog" + ], + "esbonio.sphinx.confDir": "" +} \ No newline at end of file diff --git a/README.rst b/README.rst index 6e69f66..9324bf9 100644 --- a/README.rst +++ b/README.rst @@ -1,18 +1,61 @@ -************************************* -Salish Sea NEMO Model ERDDAP Datasets -************************************* +***************************** +SalishSeaCast ERDDAP Datasets +***************************** -This repo contains the ``datasets.xml`` file that provides the dataset descriptions -for the Salish Sea NEMO Model ERDDAP server at https://salishsea.eos.ubc.ca/erddap/. +This repo contains files related to the configuration and maintenance of the SalishSeaCast +ERDDAP server at https://salishsea.eos.ubc.ca/erddap/. -Also in the repo are files, -chiefly a Jupyter notebook, -used to maintain the ``datasets.xml`` file, -and notes in this file about maintenance of the datasets file and the ERDDAP server. +The key configuration files are: +* ``datasets.xml`` that defines the collection of datasets that the ERDDAP instance serves +* ``setup.xml`` that includes the HTML for the server landing page that provides information + about the SalishSeaCast ERDDAP server as well as about ERDDAP in general + +Also in the repo are: + +* the collection of XML fragments for each dataset that are composed to create ``datasets.xml`` +* Python scripts to check that the XML fragments are well-formed, + and to build ``datasets.xml`` from the dataset description fragments +* Jupyter notebooks that are used to generate and maintain the dataset description fragments +* conda environment description YAML files to build conda environment in which the above code + can be executed + + +Python Scripts +============== + +``check_datasets_xml.py`` +------------------------- + +Script that checks that the datasets described in ``datasets.yaml`` file are well-formed XML. +Execution:: + + conda activate erddap-datasets-dev + python -m check_datasets_xml + +The ``check_datasets_xml.py`` is run by a `GitHub Action`_ whenever changes are pushed to the repo +on GitHub. +The results of those runs are at +https://github.com/SalishSeaCast/erddap-datasets/actions/workflows/check-datasets-xml.yaml + +.. _GitHub Action: https://github.com/SalishSeaCast/erddap-datasets/blob/main/.github/workflows/check-datasets-xml.yaml + + +``build_datasets_xml.py`` +------------------------- + +Script that builds the ERDDAP ``datasets.xml`` file described in the ``datasets.yaml`` file. +Execution:: + + conda activate erddap-datasets-dev + python -m build_datasets_xml + + +Jupyter Notebooks +================= `ERDDAP_datasets.ipynb`_ -======================== +------------------------- .. _ERDDAP_datasets.ipynb: https://nbviewer.org/github/SalishSeaCast/erddap-datasets/blob/main/ERDDAP_datasets.ipynb @@ -34,7 +77,7 @@ The contents are a combination of: `WWatch3_datasets.ipynb`_ -========================= +------------------------- .. _WWatch3_datasets.ipynb: https://nbviewer.org/github/SalishSeaCast/erddap-datasets/blob/main/WWatch3_datasets.ipynb @@ -58,10 +101,10 @@ The contents are a combination of: License ======= -The Salish Sea NEMO model nowcast system code and documentation are copyright 2013 – present -by the `Salish Sea MEOPAR Project Contributors`_ and The University of British Columbia. +The SalishSeaCast ocean model automation system code and documentation are copyright 2013 – present +by the `SalishSeaCast Project Contributors`_ and The University of British Columbia. -.. _Salish Sea MEOPAR Project Contributors: https://github.com/SalishSeaCast/docs/blob/main/CONTRIBUTORS.rst +.. _SalishSeaCast Project Contributors: https://github.com/SalishSeaCast/docs/blob/main/CONTRIBUTORS.rst They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 diff --git a/build_datasets_xml.py b/build_datasets_xml.py new file mode 100644 index 0000000..7f1d675 --- /dev/null +++ b/build_datasets_xml.py @@ -0,0 +1,60 @@ +# Copyright 2013 – present by the SalishSeaCast Project contributors +# and The University of British Columbia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# SPDX-License-Identifier: Apache-2.0 + + +"""Build ERDDAP `datasets.xml` file described in `datasets.yaml` file. +""" +import logging +import os +from pathlib import Path + +import structlog +import yaml + +logger = structlog.get_logger() + +def main(config_path, datasets_xml): + with config_path.open("rt") as _config: + config = yaml.safe_load(_config) + + ds_tree = Path(config["datasets tree"]) + prefix = ds_tree / config["prefix"] + postfix = ds_tree / config["postfix"] + ds_descs = [ds_tree/ds_desc for ds_desc in config["datasets"]] + + logger.info("starting to write", datasets_xml=os.fspath(datasets_xml)) + with datasets_xml.open("wt") as _datasets_xml: + _write_section(prefix, _datasets_xml) + for ds_desc in ds_descs: + _write_section(ds_desc, _datasets_xml) + _write_section(postfix, _datasets_xml, end="") + logger.info("finished writing", datasets_xml=os.fspath(datasets_xml)) + +def _write_section(section, _datasets_xml, end="\n"): + with section.open("rt") as _section: + _datasets_xml.write(_section.read()) + _datasets_xml.write(end) + logger.info("appended", section=os.fspath(section)) + + +if __name__ == "__main__": + structlog.configure( + wrapper_class=structlog.make_filtering_bound_logger(min_level=logging.DEBUG) + ) + config_path = Path("datasets.yaml") + datasets_xml = Path("datasets.xml") + main(config_path, datasets_xml) diff --git a/check_datasets_xml.py b/check_datasets_xml.py new file mode 100644 index 0000000..296b178 --- /dev/null +++ b/check_datasets_xml.py @@ -0,0 +1,58 @@ +# Copyright 2013 – present by the SalishSeaCast Project contributors +# and The University of British Columbia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# SPDX-License-Identifier: Apache-2.0 + + +"""Check that datasets described in `datasets.yaml` file are well-formed XML. +""" +import logging +import os +from pathlib import Path + +import lxml.etree +import yaml + +import structlog + +logger = structlog.get_logger() + + +def main(config_path): + with config_path.open("rt") as _config: + config = yaml.safe_load(_config) + + ds_tree = Path(config["datasets tree"]) + ds_descs = [ds_tree/ds_desc for ds_desc in config["datasets"]] + # ds_descs = [Path("test_datasets.xml")] + + exit_code = 0 + for ds_desc in ds_descs: + try: + lxml.etree.parse(ds_desc) + logger.info("lxml parse", dataset_description=os.fspath(ds_desc), status="ok") + except lxml.etree.LxmlError as exc: + exit_code = 2 + logger.info("lxml parse", dataset_description=os.fspath(ds_desc), status="not well-formed XML!") + logger.exception(exc) + raise SystemExit(exit_code) + + +if __name__ == "__main__": + structlog.configure( + wrapper_class=structlog.make_filtering_bound_logger(min_level=logging.DEBUG) + ) + config_path = Path("datasets.yaml") + main(config_path) diff --git a/datasets.xml b/datasets.xml index 14afa9e..17be664 100644 --- a/datasets.xml +++ b/datasets.xml @@ -1,1416 +1,1578 @@ - - + See your ERDDAP daily report for a list/tally of the most active requesters. +--> + + + 136.243.228.193 + - - - - + + - + 10080 10000 - /results/forcing/atmospheric/GEM2.5/operational/ + /SalishSeaCast/grid/ false - ops_y2016m03d07\.nc$ + .*bathymetry_201702\.nc$ last 20 false false + version=1|netcdflibversion=4.4.1|hdf5libversion=1.8.17 + Bathymetry processed from Michaels New Full River Bathymetry + CF-1.6 + [2017-02-28 18:55:52] Created netCDF4 zlib=True dataset. + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + REQUIRED + https://bitbucket.org/salishsea/analysis-susan/src/tip/notebooks/bathymetry/ProcessNewRiverBathymetry.ipynb + Bathymetry 201702 + Grid - modelResult CF-1.6, COARDS, ACDD-1.3 - null - Mon Mar 7 10:07:34 2016: ncks -4 -L4 -O /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc - created by wgrib2 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada + +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. + over UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia - atmosphere, model results, HRDPS, latitude, longitude, salishsea + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + https://salishsea.eos.ubc.ca/ + bathymetry, depth, latitude, longitude, nav_lat, nav_lon, ocean, oceans, +Oceans > Bathymetry/Seafloor Topography > Bathymetry, +Salish Sea, sea floor, sea_floor_depth, seafloor, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. -This dataset is derived from a product of the Environment Canada HRDPS (High Resolution Deterministic Prediction System) model. The Terms and conditions of use of Meteorological Data from Environment Canada are available at http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt. +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - HRDPS, Salish Sea, Atmospheric Forcing Grid, Geo-location, v1 + SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v17-02 -Longitude and latitude of the Environment Canada HRDPS atmospheric forcing model grid that is used to force the Salish Sea NEMO model. +Longitude, latitude, and bathymetry of the SalishSeaCast NEMO model grid. +The bathymetry values are those calculated by NEMO from the input bathymetry file. +NEMO modifies the input bathymetry to remove isolated holes, and too-small partial steps; +See the ubcSSn2DMeshMaskV17-02 dataset for the complete details of the calculation grid. The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. -v1: longitude and latitude variables - HRDPS, Salish Sea, Atmospheric Forcing Grid, Geo-location, v1 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - Environment Canada, MEOPAR, ONC, Compute Canada - over +v1: longitude, latitude and bathymetry variables +v16-07: same variables, + bathymetry uniformly deepened by 1 grid level, + smoothed at Juan de Fuca & Johnstone Strait open boundaries, + Fraser River lengthened, + bathymetry deepened near mouth of Fraser River +v17-02: same variables, + Bathymetry composed from 3 datasets: + * USGS Digital elevation model (DEM) of Cascadia, latitude 39N-53N, longitude 116W-133W, Open-File Report 99-369, https://pubs.er.usgs.gov/publication/ofr99369 + * NOAA British Columbia, 3 arc-second MSL DEM, https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4956 + * CHS Multibeam data and all point cloud data for the Salish Sea. + Smoothed at Juan de Fuca & Johnstone Strait open boundaries. + Proxy channel for Fraser River upstream of confluence with the Pitt River. + Adjustments by Michael Dunphy to make increase resolution of Fraser River channels downstream of confluence with the Pitt River. + + SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/bathymetry_201702.nc + https://github.com/SalishSeaCast/tools/blob/main/bathymetry/ProcessNewRiverBathymetry.ipynb + null + null y gridY + - Y + Grid Y + y + modelResult + y values are grid indices in the model y-direction. + location x gridX + - X + Grid X + x + modelResult + x values are grid indices in the model x-direction. + location - nav_lon - longitude - float + Bathymetry + bathymetry + double + - longitude + null + 450.0 + 0.0 + OceanDepth + Sea Floor Depth + sea_floor_depth + modelResult + null + null + null + null + null + bathymetry nav_lat latitude - float + double + + null + 52.0 + 46.0 + modelResult + null + null + null + null + null + location latitude + Latitude + + + + nav_lon + longitude + double + + + null + -121.0 + -127.0 + modelResult + null + null + null + null + null + location + longitude + Longitude - + 10080 10000 - /results/forcing/atmospheric/GEM2.5/operational/ + /SalishSeaCast/grid/ false - .*ops_y\d{4}m\d{2}d\d{2}\.nc$ + .*mesh_mask201702\.nc$ last 20 false false - now-12hours Grid - modelResult CF-1.6, COARDS, ACDD-1.3 - null - Thu Mar 10 10:11:37 2016: ncks -4 -L4 -O /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d10.nc /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d10.nc -created by wgrib2 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - model results, atmosphere, -Atmosphere > Atmospheric Water Vapor > Humidity, -atmospheric, atmpres, humidity, long-wave, precipitation, pressure, qair, rad, radiation, rain, rainfall, short-wave, solar, specific_humidity, tair, temperature, therm_rad, time, time_counter, u-component, u_wind, v-component, v_wind, vapor, wind - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + bathymetry, coordinates, depth, e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, f-grid, fmaskutil, +glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, grid, grid parameters, mbathy, mesh mask, NEMO, ocean, +Salish Sea, sea, spacing, t-grid, tmaskutil, u-grid, umaskutil, v-grid, vmaskutil, vorticity-grid + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. -This dataset is derived from a product of the Environment Canada HRDPS (High Resolution Deterministic Prediction System) -model. The Terms and conditions of use of Meteorological Data from Environment Canada are available at -http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt.</att> +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 + SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v17-02 -2d hourly atmospheric field values from the -Environment Canada HRDPS atmospheric forcing model that are used to force the Salish Sea NEMO model. +NEMO grid variable value for the u-v plane of the +SalishSeaCast NEMO model Arakawa-C grid. +The values are those calculated by NEMO from the input coordinates and bathymetry files. +The variable names are those used by NEMO-3.6, +see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, +or the long_name attributes of the variables for succinct descriptions of the variables. The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. -Geo-location data for the atmospheric forcing grid are available in the ubcSSaAtmosphereGridV1 dataset. -Atmospheric field values are interpolated on to the Salish Sea NEMO model grid on-the-fly by NEMO. -v1: atmospheric pressure, precipitation rate, 2m specific humidity, 2m air temperature, -short-wave radiation flux, long-wave radiation flux, 10m u wind component, 10m v wind component variables - HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada, Environment Canada - over +v1: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, + tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables +v16-07: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, + glamf, gphif, tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables +v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, + e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, mbathy variables + SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/mesh_mask201702.nc + null + null + null + null - time_counter + t time - null + modelResult + Time Axis time + proleptic_gregorian + 2014-09-12 00:30:00 + seconds since 2014-09-12 00:30:00 y gridY - null - null - null - Y + modelResult + Grid Y y + count + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location x gridX - null - null - null - X + modelResult + Grid X x + count + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - atmpres - atmpres + tmaskutil + tmaskutil + byte + + modelResult + Dry Land Mask for T-grid and W-grid + tmaskutil + grid_parameter + land, water + 0, 1 + + + + umaskutil + umaskutil + byte + + modelResult + Dry Land Mask for U-grid + umaskutil + grid_parameter + land, water + 0, 1 + + + + vmaskutil + vmaskutil + byte + + modelResult + Dry Land Mask for V-grid + vmaskutil + grid_parameter + land, water + 0, 1 + + + + fmaskutil + fmaskutil + byte + + modelResult + Dry Land Mask for vorticity-grid + fmaskutil + grid_parameter + land, water + 0, 1 + + + + glamt + glamt float - - null - null + modelResult + Longitude of T-grid Points + glamt + grid_parameter + degrees_east - precip - precip + glamu + glamu float - - null - 200.0 - 0.0 - null + modelResult + Longitude of U-grid Points + glamu + grid_parameter + degrees_east - qair - qair + glamv + glamv float - - null - 128.0 - 0.0 - null - specific_humidity + modelResult + Longitude of V-grid Points + glamv + grid_parameter + degrees_east - solar - solar + glamf + glamf float - - null - 500.0 - -500.0 - null + modelResult + Longitude of Vorticity-grid Points + glamf + grid_parameter + degrees_east - tair - tair + gphit + gphit float - - null - 313.0 - 263.0 - null + modelResult + Latitude of T-grid Points + gphit + grid_parameter + degrees_north - therm_rad - therm_rad + gphiu + gphiu float - - null - null + modelResult + Latitude of U-grid Points + gphiu + grid_parameter + degrees_north - u_wind - u_wind + gphiv + gphiv float - - null - null + modelResult + Latitude of V-grid Points + gphiv + grid_parameter + degrees_north - v_wind - v_wind + gphif + gphif float - - null - null + modelResult + Latitude of Vorticity-grid Points + gphif + grid_parameter + degrees_north - - - - - 10080 - 10000 - /results/observations/ONC/CTD/SCVIP/ - false - .*SCVIP_CTD_15m_\d{8}\.nc$ - last - - - - - time - time - false - false - - - - now-2days - TimeSeries - depth, longitude, latitude - COARDS, CF-1.6, ACDD-1.3 - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - https://data.oceannetworks.ca/DataSearch?location=SCVIP&deviceCategory=CTD - over - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 15min aggregation, ONC Central Node VENUS Instrument Platform, Ocean Networks Canada, -depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SCVIP, observations, CTD, -Oceans &gt; Ocean Temperature &gt; Water Temperature, -reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, -sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, -sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, -temperature, temperature_sample_count, temperature_std_dev, time - GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. - -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 - -Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. - (local files) - CF Standard Name Table v29 - ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 - -Temperature and salinity data from the Ocean Networks Canada (ONC) -Strait of Georgia Central Node VENUS Instrument Platform CTD. -The data are resampled from the raw instrument data to 15 minute mean values. -They are accompanied by standard deviations and sample counts for each of the 15 minute -aggregation intervals. - -v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, -temperature, temperature standard deviation, temperature sample counts variables - ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 - Salish Sea MEOPAR NEMO Model - - time - time - long - + e1t + e1t + double - Time - time - timeseries_id + modelResult + Grid Spacing on T-grid in u Direction + e1t + grid_parameter + m - temperature_sample_count - temperature_sample_count - long - - + e1u + e1u + double + + modelResult + Grid Spacing on U-grid in u Direction + e1u + grid_parameter + m + - salinity_std_dev - salinity_std_dev + e1v + e1v double - - + + modelResult + Grid Spacing on V-grid in u Direction + e1v + grid_parameter + m + - salinity - salinity + e1f + e1f double - - 34.0 - 0.0 + modelResult + Grid Spacing on Vorticity-grid in u Direction + e1f + grid_parameter + m - salinity_sample_count - salinity_sample_count - long - - + e2t + e2t + double + + modelResult + Grid Spacing on T-grid in v Direction + e2t + grid_parameter + m + - temperature - temperature + e2u + e2u double - - 20.0 - 4.0 + modelResult + Grid Spacing on U-grid in v Direction + e2u + grid_parameter + m - temperature_std_dev - temperature_std_dev + e2v + e2v double - - + + modelResult + Grid Spacing on V-grid in v Direction + e2v + grid_parameter + m + - depth - depth - long - + e2f + e2f + double - 450.0 - 0.0 - OceanDepth - Depth - depth + modelResult + Grid Spacing on Vorticity-grid in v Direction + e2f + grid_parameter m - longitude - longitude + ff + ff double - - 180.0 - -180.0 - Longitude - longitude - degrees_east + modelResult + Coriolis parameter on Vorticity-grid + ff + grid_parameter + s-1 - latitude - latitude - double - + mbathy + mbathy + short - 90.0 - -90.0 - Latitude - latitude - degrees_north + modelResult + Fortran Index of Deepest Water Cell, T-grid + mbathy + grid_parameter + count - + 10080 10000 - /results/observations/ONC/CTD/SEVIP/ + /SalishSeaCast/grid/ false - .*SEVIP_CTD_15m_\d{8}\.nc$ + .*mesh_mask201702\.nc$ last - - - - - time - time + 20 false false - - now-2days - TimeSeries - depth, longitude, latitude - COARDS, CF-1.6, ACDD-1.3 - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca + Grid + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - https://data.oceannetworks.ca/DataSearch?location=SEVIP&deviceCategory=CTD + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada + +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. over - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 15min aggregation, ONC East Node VENUS Instrument Platform, Ocean Networks Canada, -depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SEVIP, observations, CTD, -Oceans &gt; Ocean Temperature &gt; Water Temperature, -reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, -sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, -sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, -temperature, temperature_sample_count, temperature_std_dev, time - GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. - -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + bathymetry, coordinates, depth, e3t_0, e3u_0, e3v_0, e3w_0, f-grid, fmask, gdept_0, gdepu, gdepv, +gdepw_0, grid, grid parameters, mesh mask, NEMO, ocean, Salish Sea, sea, spacing, t-grid, tmask, u-grid, umask, +v-grid, vmask, vorticity-grid, w-grid + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. -Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. - (local files) +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v17-02 -Temperature and salinity data from the Ocean Networks Canada (ONC) -Strait of Georgia East Node VENUS Instrument Platform CTD. -The data are resampled from the raw instrument data to 15 minute mean values. -They are accompanied by standard deviations and sample counts for each of the 15 minute -aggregation intervals. +NEMO grid variable value for the SalishSeaCast NEMO model Arakawa-C grid. +The values are those calculated by NEMO from the input coordinates and bathymetry files. +The variable names are those used by NEMO-3.6, +see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, +or the long_name attributes of the variables for succinct descriptions of the variables. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. -v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, -temperature, temperature standard deviation, temperature sample counts variables - ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 - Salish Sea MEOPAR NEMO Model +v1: e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0, tmask, umask, vmask, fmask variables +v16-07: e3t, e3u, e3v, e3w, gdept, gdepu, gdepv, gdepw, tmask, umask, vmask, fmask variables + +v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0 variables + SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/mesh_mask201702.nc + null + null + null + null - - time + + t time - long - Time + modelResult + Time Axis time - timeseries_id + proleptic_gregorian + 2014-09-12 00:30:00 + seconds since 2014-09-12 00:30:00 - - - salinity - salinity - double + + + z + gridZ - 34.0 - 0.0 + modelResult + Grid Z + z + count + gridZ values are grid indices of the model depth levels. + location - - - temperature - temperature - double + + + y + gridY - 20.0 - 4.0 + modelResult + Grid Y + y + count + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - temperature_std_dev - temperature_std_dev - double + + + x + gridX - - + + modelResult + Grid X + x + count + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + - salinity_std_dev - salinity_std_dev - double + tmask + tmask + byte - + + modelResult + Land Mask for T-grid and W-grid + tmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + - salinity_sample_count - salinity_sample_count - long + umask + umask + byte - + + modelResult + Land Mask for U-grid + umask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + - temperature_sample_count - temperature_sample_count - long + vmask + vmask + byte - + + modelResult + Land Mask for V-grid + vmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + - latitude - latitude - double + fmask + fmask + byte - 90.0 - -90.0 - Latitude - latitude - degrees_north + modelResult + Land Mask for vorticity-grid + fmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null - longitude - longitude + e3t_0 + e3t_0 double - 180.0 - -180.0 - Longitude - longitude - degrees_east + modelResult + Grid Spacing on T-grid in w Direction + e3t_0 + grid_parameter + m + null + null + null + null + null + null - depth - depth - long + e3u_0 + e3u_0 + double - 450.0 - 0.0 - OceanDepth - Depth - depth + modelResult + Grid Spacing on U-grid in w Direction + e3u_0 + grid_parameter m + null + null + null + null + null + null - - - - 10080 - 10000 - /results/observations/ONC/CTD/LSBBL/ - false - .*LSBBL_CTD_15m_\d{8}\.nc$ - last - - - - - time - time - false - false - - - - TimeSeries - depth, longitude, latitude - COARDS, CF-1.6, ACDD-1.3 - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - https://data.oceannetworks.ca/DataSearch?location=LSBBL&deviceCategory=CTD - over - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 15min aggregation, ONC Fraser River Delta Lower Slope Node Bottom Boundary Layer Station, Ocean Networks Canada, -depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, LSBBL, observations, CTD, -Oceans &gt; Ocean Temperature &gt; Water Temperature, -reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, -sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, -sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, -temperature, temperature_sample_count, temperature_std_dev, time - GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. - -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 - -Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. - (local files) - CF Standard Name Table v29 - ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 - -Temperature and salinity data from the Ocean Networks Canada (ONC) -Fraser River Delta Lower Slope Bottom Boundary Layer Node CTD. -The data are resampled from the raw instrument data to 15 minute mean values. -They are accompanied by standard deviations and sample counts for each of the 15 minute -aggregation intervals. - -v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, -temperature, temperature standard deviation, temperature sample counts variables - ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 - Salish Sea MEOPAR NEMO Model - - time - time - long + e3v_0 + e3v_0 + double - Time - time - timeseries_id + modelResult + Grid Spacing on V-grid in w Direction + e3v_0 + grid_parameter + m + null + null + null + null + null + null - salinity - salinity + e3w_0 + e3w_0 double - 34.0 - 0.0 + modelResult + Grid Spacing on W-grid in w Direction + e3w_0 + grid_parameter + m + null + null + null + null + null + null - temperature - temperature - double + gdept_0 + gdept_0 + float - 20.0 - 4.0 + modelResult + Depth of T-grid Points + down + gdept_0 + grid_parameter + m + null + null + null + null + null + null - temperature_std_dev - temperature_std_dev - double + gdepu + gdepu + float - + + modelResult + Depth of U-grid Points + down + gdepu + grid_parameter + m + null + null + null + null + null + null + - salinity_std_dev - salinity_std_dev - double + gdepv + gdepv + float - - - - salinity_sample_count - salinity_sample_count - long - - + + modelResult + Depth of V-grid Points + down + gdepv + grid_parameter + m + null + null + null + null + null + null + - temperature_sample_count - temperature_sample_count - long + gdepw_0 + gdepw_0 + float - + + modelResult + Depth of W-grid Points + down + gdepw_0 + grid_parameter + m + null + null + null + null + null + null + - - latitude - latitude - double + + + + 10080 + 10000 + /results/forcing/atmospheric/GEM2.5/operational/ + false + ops_y2016m03d07\.nc$ + last + 20 + false + false + + + Grid + modelResult + CF-1.6, COARDS, ACDD-1.3 + null + [Mon Mar 7 10:07:34 2016] ncks -4 -L4 -O /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc + [Mon Mar 7 10:07:00 2016] created by wgrib2 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + atmosphere, model results, HRDPS, latitude, longitude, polar-stereographic grid, Salish Sea + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +This dataset is derived from a product of the Environment and Climate Change Canada HRDPS +(High Resolution Deterministic Prediction System) model. +The Terms and conditions of use of Meteorological Data from Environment and Climate Change Canada +are available at http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt. + CF Standard Name Table v29 + HRDPS, SalishSeaCast, Atmospheric Forcing Grid, Geo-location, v1 + +Longitude and latitude of the Environment and Climate Change Canada HRDPS West polar-stereographic model grid. +This is the model grid that was used for atmospheric forcing for the SalishSeaCast NEMO model between +2014-09-12 and 2023-02-22. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. + +v1: longitude and latitude variables + HRDPS, Salish Sea, Atmospheric Forcing Grid, Geo-location, v1 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eaos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Environment and Climate Change Canada + over + + + y + gridY + + + location + Y Coordinate of Projection + + + + x + gridX - 90.0 - -90.0 - Latitude - latitude - degrees_north + location + X Coordinate of Projection - + - longitude + nav_lon longitude - double + float - 180.0 - -180.0 Longitude - longitude - degrees_east + location - depth - depth - long + nav_lat + latitude + float - 450.0 - 0.0 - OceanDepth - Depth - depth - m + Latitude + location - + 10080 10000 - /results/observations/ONC/CTD/USDDL/ + /results/forcing/atmospheric/GEM2.5/operational/ false - .*USDDL_CTD_15m_\d{8}\.nc$ + .*ops_y\d{4}m\d{2}d\d{2}\.nc$ last - - - - - time - time + 20 false false - - now-2days - TimeSeries - depth, longitude, latitude - COARDS, CF-1.6, ACDD-1.3 - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - https://data.oceannetworks.ca/DataSearch?location=USDDL&deviceCategory=CTD - over - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + now-12hours + Grid + modelResult + CF-1.6, COARDS, ACDD-1.3 + null + Files generated daily by +`python3 -m nowcast.workers.grib_to_netcdf $NOWCAST_YAML nowcast+` + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 15min aggregation, ONC Fraser River Delta Upper Slope Node Delta Dynamics Laboratory Station, Ocean Networks Canada, -depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, USDDL, observations, CTD, -Oceans &gt; Ocean Temperature &gt; Water Temperature, -reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, -sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, -sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, -temperature, temperature_sample_count, temperature_std_dev, time + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + model results, atmosphere, +Atmosphere > Atmospheric Water Vapor > Humidity, +atmospheric, atmpres, humidity, long-wave, precipitation, pressure, qair, rad, radiation, rain, rainfall, short-wave, solar, specific_humidity, tair, temperature, therm_rad, time, time_counter, u-component, u_wind, v-component, v_wind, vapor, wind GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. - (local files) +This dataset was derived from a product of the Environment and Climate Change Canada HRDPS +(High Resolution Deterministic Prediction System) West model polar-stereographic projection product. +The Terms and conditions of use of Meteorological Data from Environment and Climate Change Canada +are available at http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt. CF Standard Name Table v29 - ONC, Strait of Georgia, Fraser River Delta Upper Sloper DDL Node, Salinity and Temperature, 15min, v1 + HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 -Temperature and salinity data from the Ocean Networks Canada (ONC) -Fraser River Delta Upper Slope Delta Dynamics Laboratory Node CTD. -The data are resampled from the raw instrument data to 15 minute mean values. -They are accompanied by standard deviations and sample counts for each of the 15 minute -aggregation intervals. +2d hourly atmospheric field values from the Environment and Climate Change Canada HRDPS +atmospheric forcing model that were used to force the SalishSeaCast NEMO model between +2014-09-12 and 2023-02-22. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +Geo-location data for the atmospheric forcing grid are available in the ubcSSaAtmosphereGridV1 dataset. +Atmospheric field values are interpolated on to the Salish Sea NEMO model grid on-the-fly by NEMO. -v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, -temperature, temperature standard deviation, temperature sample counts variables - ONC, Strait of Georgia, Fraser River Delta Upper Slope DDL Node, Salinity and Temperature, 15min, v1 - Salish Sea MEOPAR NEMO Model +v1: atmospheric pressure, precipitation rate, 2m specific humidity, 2m air temperature, +short-wave radiation flux, long-wave radiation flux, 10m u wind component, 10m v wind component variables + HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Environment and Climate Change Canada + over - - time + + time_counter time - long - Time + null time - timeseries_id - - - salinity - salinity - double - - 34.0 - 0.0 + null + null + count + Y + y + Y values are grid indices in the model y-direction; +geo-location data for the SalishSeaCast sub-domain of the ECCC MSC 2.5km resolution HRDPS West +polar-stereographic model grid is available in the ubcSSaAtmosphereGridV1 dataset. - + + + x + gridX + + + null + null + null + X + x + X values are grid indices in the model x-direction; +geo-location data for the SalishSeaCast sub-domain of the ECCC MSC 2.5km resolution HRDPS West +polar-stereographic model grid is available in the ubcSSaAtmosphereGridV1 dataset. + + - temperature - temperature - double + atmpres + atmpres + float - 20.0 - 4.0 + null + null - temperature_std_dev - temperature_std_dev - double + precip + precip + float - + + null + 200.0 + 0.0 + null + - salinity_std_dev - salinity_std_dev - double + qair + qair + float - + + null + 128.0 + 0.0 + null + specific_humidity + - salinity_sample_count - salinity_sample_count - long + solar + solar + float - + + null + 500.0 + -500.0 + null + - temperature_sample_count - temperature_sample_count - long + tair + tair + float - + + null + 313.0 + 263.0 + null + - latitude - latitude - double + therm_rad + therm_rad + float - 90.0 - -90.0 - Latitude - latitude - degrees_north + null + null - longitude - longitude - double + u_wind + u_wind + float - 180.0 - -180.0 - Longitude - longitude - degrees_east + null + null - depth - depth - long + v_wind + v_wind + float - 450.0 - 0.0 - OceanDepth - Depth - depth - m + null + null - + 10080 10000 - /SalishSeaCast/grid/ - false - .*bathymetry_201702\.nc$ + /results/SalishSea/climatology/ + .*seasonal_ts-30_\d{4}\.nc$ + true + .* last 20 false false Grid CF-1.6, COARDS, ACDD-1.3 - Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada, CHS, NOAA, USGS - -This product has been produced by the University of British Columbia based on Canadian Hydrographic Service charts -and/or data, pursuant to CHS Direct User Licence No. 2016-0504-1260-U - -The incorporation of data sourced from CHS in this product shall not be construed as constituting an endorsement of -CHS of this product. - -This product does not meet the requirements of Charts and Nautical Publications Regulations, -1995 under the Canadian Shipping Act, 2001. Official charts and publications, corrected and up-to-data, -must be used to meet the requirements of those regulations. - over - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - bathymetry, depth, nav_lat, nav_lon, ocean, oceans, -Oceans > Bathymetry/Seafloor Topography > Bathymetry, -Salish Sea, sea floor, sea_floor_depth, seafloor, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity/Density > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Salish Sea NEMO Model Grid, Geo-location and Bathymetry, v17-02 + Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 -Longitude, latitude, and bathymetry of the Salish Sea NEMO model grid. -The bathymetry values are those calculated by NEMO from the input bathymetry file. -NEMO modifies the input bathymetry to remove isolated holes, and too-small partial steps; -See the ubcSSn2DMeshMaskV17-02 dataset for the complete details of the calculation grid. -The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +2d depth-averaged salinity and water temperature field values +averaged over 3 month seasonal intervals from SalishSeaCast NEMO model nowcast runs. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, +the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +The variable values are averaged over the upper 22 layers of the model grid, +approximately 0 to 30 metres depth. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: longitude, latitude and bathymetry variables -v16-07: same variables, - bathymetry uniformly deepened by 1 grid level, - smoothed at Juan de Fuca & Johnstone Strait open boundaries, - Fraser River lengthened, - bathymetry deepened near mouth of Fraser River -v17-02: same variables, - Bathymetry composed from 3 datasets: - * USGS Digital elevation model (DEM) of Cascadia, latitude 39N-53N, longitude 116W-133W, Open-File Report 99-369, https://pubs.er.usgs.gov/publication/ofr99369 - * NOAA British Columbia, 3 arc-second MSL DEM, https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4956 - * CHS Multibeam data and all point cloud data for the Salish Sea. - Smoothed at Juan de Fuca & Johnstone Strait open boundaries. - Proxy channel for Fraser River upstream of confluence with the Pitt River. - Adjustments by Michael Dunphy to make increase resolution of Fraser River channels downstream of confluence with the Pitt River. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: + reference salinity and conservative temperature variables - Salish Sea NEMO Model Grid, Geo-location and Bathymetry, v17-02 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + over + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3 month seasonal-averaged 2d depth-averaged salinity and water temperature fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg2DTracerFieldsSeasonalV17-02. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + null null - https://bitbucket.org/salishsea/nemo-forcing/raw/tip/grid/bathymetry_201702.nc - null + null + null + depth-averaged seasonal average T grid variables + + time_counter + time + + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time + modelResult + + y gridY - Y + Grid Y + y modelResult - gridY values are grid indices in the model y-direction. + gridY values are grid indices in the model y-direction; + geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location @@ -1420,179 +1582,188 @@ v17-02: same variables, - X + Grid X + x modelResult - gridX values are grid indices in the model x-direction. + gridX values are grid indices in the model x-direction; + geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - Bathymetry - bathymetry - double - + vosalineoverdepth + salinity + float + Depth-Averaged Reference Salinity + sea_water_reference_salinity + g kg-1 null - 450.0 + null + null + salinity 0.0 - OceanDepth - Sea Floor Depth - sea_floor_depth - modelResult - null - null - null - null - null - bathymetry - - - - nav_lat - latitude - double - - - null - 52.0 - 46.0 - Nav Lat + 34.0 modelResult null null null null null - location - - - latitude - Latitude + salinity - nav_lon - longitude - double - + votemperoverdepth + temperature + float + Depth-Averaged Conservative Temperature + sea_water_conservative_temperature + degC null - -121.0 - -127.0 - Nav Lon + null + null + temperature + 4.0 + 20.0 modelResult null null null null null - location - - - longitude - Longitude + temperature - + 10080 10000 - /SalishSeaCast/grid/ - false - .*mesh_mask201702\.nc$ + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ last 20 false false + now-16hours Grid CF-1.6, COARDS, ACDD-1.3 - Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - over - https://salishsea.eos.ubc.ca/erddap/info/ -https://bitbucket.org/salishsea/nemo-forcing/src/tip/grid/bathymetery_201702.nc - - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - bathymetry, coordinates, depth, e3t_0, e3u_0, e3v_0, e3w_0, f-grid, fmask, gdept_0, gdepu, gdepv, -gdepw_0, grid, grid parameters, mesh mask, NEMO, ocean, Salish Sea, sea, spacing, t-grid, tmask, u-grid, umask, -v-grid, vmask, vorticity-grid, w-grid - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Salish Sea NEMO Model Grid, 3D Mesh Mask, v17-02 + Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 -NEMO grid variable value for the Salish Sea NEMO model Arakawa-C grid. -The values are those calculated by NEMO from the input coordinates and bathymetry files. -The variable names are those used by NEMO-3.6, -see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, -or the long_name attributes of the variables for succinct descriptions of the variables. -The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +Variable values at the 3d zonal (u) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. -v1: e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0, tmask, umask, vmask, fmask variables -v16-07: e3t, e3u, e3v, e3w, gdept, gdepu, gdepv, gdepw, tmask, umask, vmask, fmask variables +v1: uVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. -v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0 variables - Salish Sea NEMO Model Grid, 3D Mesh Mask, v17-02 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - null - null - null +Reference wording: + +3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DuGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null - t + time_counter time - Time + null + null modelResult - time - gregorian - 2014-09-12 00:30:00 - seconds since 2014-09-12 00:30:00 + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - z - gridZ + depthu + depth - Z + null + null + null + null + Depth + depth modelResult location @@ -1603,7 +1774,8 @@ v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, - Y + Grid Y + y modelResult gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location @@ -1615,363 +1787,647 @@ v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, - X + Grid X + x modelResult gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - tmask - tmask - byte + vozocrtx + uVelocity + float + Ocean Current Along x-axis + sea_water_x_velocity null + 8.0 + -8.0 + null modelResult null null null null null - grid_parameter + currents - - umask - umask - byte + + + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 + +Variable values at the 3d meridional (v) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v1: vVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DvGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time null + null modelResult - null - null - null - null - null - grid_parameter + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - vmask - vmask - byte + + + depthv + depth null + null + null + null + Depth + depth modelResult - null - null - null - null - null - grid_parameter + location - - - fmask - fmask - byte + + + y + gridY - null + Grid Y + y modelResult - null - null - null - null - null - grid_parameter - - - - e3t_0 - e3t_0 - double + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX - null + Grid X + x modelResult - null - null - null - null - null - grid_parameter + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - e3u_0 - e3u_0 - double + vomecrty + vVelocity + float + Ocean Current Along y-axis + sea_water_y_velocity null + 8.0 + -8.0 + null modelResult null null null null null - grid_parameter + currents - - e3v_0 - e3v_0 - double + + + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_W\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, +Oceans > Ocean Circulation > Diffusion, +Oceans > Ocean Circulation > Ocean Currents, +Oceans > Ocean Circulation > Upwelling/Downwelling, +sea, seawater, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, +w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, +vovecrtz + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 + +Variable values at the 3d vertical (w) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v1: wVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Renamed eddy viscosity & diffusivity variables to vert_eddy_visc & vert_eddy_diff + Added turbulent kinetic energy dissipation rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DwGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time null + null modelResult - null - null - null - null - null - grid_parameter + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - e3w_0 - e3w_0 - double + + + depthw + depth null + null + null + Depth + depth modelResult - null - null - null - null - null - grid_parameter + location - + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + - gdept_0 - gdept_0 + dissipation + dissipation float + Turbulent Kinetic Energy Dissipation Rate + turbulent_kinetic_energy_dissipation_in_sea_water null + null modelResult null null null null null - grid_parameter + physical_oceanography - gdepu - gdepu + vert_eddy_diff + vert_eddy_diff float + Vertical Eddy Diffusivity + ocean_vertical_heat_diffusivity null + 0.1 + 0.0 + null modelResult null null null null null - grid_parameter + physical_oceanography - gdepv - gdepv + vert_eddy_visc + vert_eddy_visc float + Vertical Eddy Viscosity + ocean_vertical_momentum_diffusivity null + 0.1 + 0.0 + null modelResult null null null null null - grid_parameter + physical_oceanography - gdepw_0 - gdepw_0 + vovecrtz + wVelocity float + Ocean Vertical Velocity + upward_sea_water_velocity null + 0.5 + -0.5 + null modelResult null null null null null - grid_parameter + currents - + 10080 10000 - /SalishSeaCast/grid/ - false - .*mesh_mask201702\.nc$ + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ last 20 false false + now-16hours Grid CF-1.6, COARDS, ACDD-1.3 - Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - over - https://salishsea.eos.ubc.ca/erddap/info/ -https://bitbucket.org/salishsea/nemo-forcing/src/tip/grid/bathymetery_201702.nc - - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - bathymetry, coordinates, depth, e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, f-grid, fmaskutil, -glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, grid, grid parameters, mbathy, mesh mask, NEMO, ocean, -Salish Sea, sea, spacing, t-grid, tmaskutil, u-grid, umaskutil, v-grid, vmaskutil, vorticity-grid - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + deptht, grid, ocean, oceans, +Oceans > Ocean Circulation > Sea Surface Topography > Sea Surface Height, +sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, +sossheig, time_counter, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Salish Sea NEMO Model Grid, 2D Mesh Mask, v17-02 + Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 -NEMO grid variable value for the u-v plane of the -Salish Sea NEMO model Arakawa-C grid. -The values are those calculated by NEMO from the input coordinates and bathymetry files. -The variable names are those used by NEMO-3.6, -see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, -or the long_name attributes of the variables for succinct descriptions of the variables. -The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +2d sea surface height values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the surface of the model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, - tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables -v16-07: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, - glamf, gphif, tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables -v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, - e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, mbathy variables - Salish Sea NEMO Model Grid, 2D Mesh Mask, v17-02 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - null +v1: sea surface height and rainfall rate variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Deleted rainfall rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + Added mixed layer depth variable (dsigma = 0.01 wrt 10m) +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed mixed layer depth variable +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; changed biology; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Sea surface height fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSgSurfaceTracerFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over null + null null + ocean surface T grid variables - t + time_counter time - Time + null + null modelResult - time - gregorian - 2014-09-12 00:30:00 - seconds since 2014-09-12 00:30:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time @@ -1980,7 +2436,8 @@ v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, - Y + Grid Y + y modelResult gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location @@ -1992,2980 +2449,3720 @@ v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, - X + Grid X + x modelResult gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - tmaskutil - tmaskutil - byte - - tmaskutil - dry land mask for T-grid and W-grid - grid_parameter - modelResult - land, water - 0, 1 - - - - umaskutil - umaskutil - byte - - umaskutil - dry land mask for U-grid - grid_parameter - modelResult - land, water - 0, 1 - - - - vmaskutil - vmaskutil - byte + sossheig + ssh + float - vmaskutil - dry land mask for V-grid - grid_parameter - modelResult - land, water - 0, 1 + Sea Surface Height + sea_surface_height_above_geoid + null + null + -4.0 + 4.0 + modelResult + null + null + null + null + null + sea_level - - fmaskutil - fmaskutil - byte - - fmaskutil - dry land mask for vorticity-grid - grid_parameter - modelResult - land, water - 0, 1 - - - - glamt - glamt - float + + + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_ptrc_T\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, +Biological Classification > Protists > Diatoms, +biosphere, +Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, +chemistry, ciliates, concentration, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, +flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, +mole_concentration_of_ammonium_in_sea_water, +mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, +mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, +Oceans > Ocean Chemistry > Ammonia, +Oceans > Ocean Chemistry > Nitrate, +Oceans > Ocean Chemistry > Nitrogen, +Oceans > Ocean Chemistry > Organic Matter, +Oceans > Ocean Chemistry > Silicate, +organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, +silicate, silicon, time_counter, tracer, water, zooplankton + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 + +3d SMELT biological model field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v17-02: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), + diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, + nitrate, particulate organic nitrogen, silicon. + Fraser River water turbidity tracer. + NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d SMELT biological model field values from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DBiologyFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. +Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. +J. Geophys. Res. Oceans, 121(3), 1600–1625. +https://dx.doi.org/10.1002/2015JC011118 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + +Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. +Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. +J. Geophys. Res. Oceans, 125(8). +https://doi.org/10.1029/2019JC015766 + + over + null + null + null + + + time_counter + time + - glamt - longitude of T-grid points - grid_parameter - modelResult - degrees_east + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - glamu - glamu - float + + + deptht + depth + - glamu - longitude of U-grid points - grid_parameter - modelResult - degrees_east + null + null + null + Depth + depth + modelResult + location - - - glamv - glamv - float + + + y + gridY + - glamv - longitude of V-grid points - grid_parameter - modelResult - degrees_east + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - glamf - glamf - float + + + x + gridX + - glamf - longitude of vorticity-grid points - grid_parameter - modelResult - degrees_east + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - gphit - gphit + ammonium + ammonium float + - gphit - latitude of T-grid points - grid_parameter - modelResult - degrees_north + null + 5.0 + 0.0 + null + modelResult + null + null + null + null + null + dissolved_nutrients - gphiu - gphiu + biogenic_silicon + biogenic_silicon float - - gphiu - latitude of U-grid points - grid_parameter - modelResult - degrees_north + + + null + null + 0 + 70.0 + modelResult + null + null + null + null + null + dissolved_nutrients - gphiv - gphiv + ciliates + ciliates float + - gphiv - latitude of V-grid points - grid_parameter - modelResult - degrees_north + null + null + modelResult + null + null + null + null + null + biology - gphif - gphif + diatoms + diatoms float + - gphif - latitude of vorticity-grid points - grid_parameter - modelResult - degrees_north + null + null + 0 + 20.0 + modelResult + null + null + null + null + null + biology - e1t - e1t - double + dissolved_organic_nitrogen + dissolved_organic_nitrogen + float + - e1t - grid spacing on T-grid in u direction - grid_parameter - modelResult - m + null + null + modelResult + null + null + null + null + null + dissolved_nutrients - e1u - e1u - double + flagellates + flagellates + float + - e1u - grid spacing on U-grid in u direction - grid_parameter - modelResult - m + null + 128.0 + 0.0 + null + modelResult + null + null + null + null + null + biology - e1v - e1v - double + mesozooplankton + mesozooplankton + float + - e1v - grid spacing on V-grid in u direction - grid_parameter - modelResult - m + null + null + modelResult + null + null + null + null + null + biology - e1f - e1f - double + microzooplankton + microzooplankton + float + - e1f - grid spacing on vorticity-grid in u direction - grid_parameter - modelResult - m + null + null + modelResult + null + null + null + null + null + biology - e2t - e2t - double + nitrate + nitrate + float + - e2t - grid spacing on T-grid in v direction - grid_parameter - modelResult - m - - - - e2u - e2u - double - - e2u - grid spacing on U-grid in v direction - grid_parameter - modelResult - m - - - - e2v - e2v - double - - e2v - grid spacing on V-grid in v direction - grid_parameter - modelResult - m - - - - e2f - e2f - double - - e2f - grid spacing on vorticity-grid in v direction - grid_parameter - modelResult - m + null + 40.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients - ff - ff - double + particulate_organic_nitrogen + particulate_organic_nitrogen + float + - ff - Coriolis parameter on vorticity-grid - grid_parameter - modelResult - s-1 + null + null + modelResult + null + null + null + null + null + dissolved_nutrients - mbathy - mbathy - short + silicon + silicon + float + - mbathy - fortran index of deepest water cell, T-grid - grid_parameter - modelResult - count + null + 70.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients - - 10800 + + 10080 10000 - /results/observations/ONC/ferries/TWDP/ - false - .*TWDP_TSG_O2_TURBCHLFL_CO2_METEO_1m_\d{8}.nc$ + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ last - - - - - time - time + 20 false false - - TimeSeries - longitude, latitude, on_crossing_mask, crossing_number - COARDS, CF-1.6, ACDD-1.3 - https://salishsea-meopar-tools.readthedocs.org/en/latest/results_server/ + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - 1min aggregation, ONC Mobile Platforms, British Columbia Ferries, -Tsawwassen - Duke Point route, Ocean Networks Canada, -UBC EOAS, Strait of Georgia, latitude, longitude, ocean, observations, -Atmosphere > Atmospheric Pressure > Surface Pressure, -Atmosphere > Atmospheric Radiation > Longwave Radiation, -Atmosphere > Atmospheric Radiation > Shortwave Radiation, -Atmosphere > Atmospheric Temperature > Air Temperature, -Atmosphere > Atmospheric Temperature > Surface Air Temperature, -Atmosphere > Atmospheric Water Vapor > Humidity, -Oceans &gt; Ocean Temperature &gt; Water Temperature, -Oceans &gt; Salinity/Density &gt; Conductivity, -Oceans &gt; Ocean Chemistry &gt; Carbon Dioxide, -Oceans &gt; Ocean Chemistry &gt; Oxygen, -air_temperature, air_temperature_sample_count, air_temperature_standard_deviations, air_temperature_std_dev, atmosphere, -barometric_pressure, barometric_pressure_sample_count, barometric_pressure_std_dev, -carbon dioxide, cdom, cdom_fluorescence, cdom_fluorescence_sample_count, cdom_fluorescence_std_dev, -chemistry, chlorophyl, chlorophyll, chlorophyll_sample_count, chlorophyll_std_dev, -CO2, co2_concentration_linearized, co2_concentration_linearized_sample_count, co2_concentration_linearized_std_dev, -co2_partial_pressure, co2_partial_pressure_sample_count, co2_partial_pressure_std_dev, -crossing_number, conductivity, conductivity_sample_count, conductivity_std_dev, -dissolved O2, electrical conductivity, -fluorescence, fractional_saturation_of_oxygen_in_sea_water, fractional_saturation_of_oxygen_in_sea_water_sample_count, -fractional_saturation_of_oxygen_in_sea_water_standard_deviation, -latitude, longitude, -longwave_radiation, longwave_radiation_sample_count, longwave_radiation_std_dev, -mass_concentration_of_chlorophyl_in_sea_water, mass_concentration_of_chlorophyl_in_sea_water_sample_count, -mass_concentration_of_chlorophyl_in_sea_water_standard_deviation, -mass_fraction_of_cdom_fluorescence_in_sea_water, mass_fraction_of_cdom_fluorescence_in_sea_water_sample_count, -mass_fraction_of_cdom_fluorescence_in_sea_water_standard_deviation, -mole_fraction_of_carbon_dioxide_in_sea_water, mole_fraction_of_carbon_dioxide_in_sea_water_sample_count, -mole_fraction_of_carbon_dioxide_in_sea_water_standard_deviation, -O2, O2 sensor temperature, -o2_concentration_corrected, o2_concentration_corrected_sample_count, o2_concentration_corrected_std_dev, -o2_saturation, o2_saturation_sample_count, o2_saturation_std_dev, -ocean, on_crossing_mask, optical properties, organic, oxygen, partial pressure, -reference salinity, salinity, salinity_sample_count, salinity_std_dev, sea water, -relative_humidity, relative_humidity_sample_count, relative_humidity_standard_deviation, relative_humidity_std_dev, -sea water electrical conductivity, sea_water_electrical_conductivity, -sea_water_electrical_conductivity_sample_count, sea_water_electrical_conductivity_standard_deviation, -sea_water_reference_salinity, sea_water_reference_salinity_sample_count, -sea_water_reference_salinity_standard_deviation, -sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, -sea_water_turbidity, sea_water_turbidity_sample_count, sea_water_turbidity_standard_deviation, -solar_radiation, solar_radiation_sample_count, solar_radiation_std_dev, -seawater, -surface_air_pressure, surface_air_pressure_sample_count, surface_air_pressure_standard_deviation, -surface_downwelling_longwave_flux_in_air, surface_downwelling_longwave_flux_in_air_standard_deviation, surface_downwelling_shortwave_flux_in_air, surface_downwelling_shortwave_flux_in_air_sample_count, surface_downwelling_shortwave_flux_in_air_standard_deviation, -surface_partial_pressure_of_carbon_dioxide_in_sea_water, -surface_partial_pressure_of_carbon_dioxide_in_sea_water_sample_count, -surface_partial_pressure_of_carbon_dioxide_in_sea_water_standard_deviation, -temperature, temperature_sample_count, temperature_std_dev, -temperature_of_sensor_for_oxygen_in_sea_water, temperature_of_sensor_for_oxygen_in_sea_water_sample_count, -temperature_of_sensor_for_oxygen_in_sea_water_standard_deviation, -time, turbidity, -volume_fraction_of_oxygen_in_sea_water, volume_fraction_of_oxygen_in_sea_water_sample_count, -volume_fraction_of_oxygen_in_sea_water_standard_deviation - GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. - -They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + deptht, grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. -Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. - (local files) +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 + Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 -Data from the Ocean Networks Canada (ONC) -Strait of Georgia Mobile Platforms, British Columbia Ferries, Tsawwassen - Duke Point route. -The data are resampled from the raw instrument data to 1 minute mean values. -They are accompanied by standard deviations and sample counts for each of the 1 minute -aggregation intervals. +3d salinity and water temperature field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: on_crossing_mask, crossing_number, - temperature, temperature standard deviation, temperature sample counts, - conductivity, conductivity standard deviation, conductivity sample counts, - reference salinity, reference salinity standard deviation, reference salinity sample counts, - O2 saturation, O2 saturation standard deviation, O2 saturation sample counts, - corrected O2 concentration, corrected O2 concentration standard deviation, corrected O2 concentration sample counts, - O2 sensor temperature, O2 sensor temperature standard deviation, O2 sensor temperature sample counts, - CDOM fluorescence, CDOM fluorescence standard deviation, CDOM fluorescence sample counts, - chlorophyll, chlorophyll standard deviation, chlorophyll sample counts, - turbidity, turbidity standard deviation, turbidity sample counts, - CO2 partial pressure, CO2 partial pressure standard deviation, CO2 partial pressure sample counts, - linearized CO2 concentration, linearized CO2 concentration standard deviation, linearized CO2 concentration sample counts, - variables -v18-01: Add air temperature, air temperature standard deviation, air temperature sample counts, - relative humidity, relative humidity standard deviation, relative humidity sample counts, - barometric pressure, barometric pressure standard deviation, barometric pressure sample counts, - solar radiation, solar radiation standard deviation, solar radiation sample counts, - longwave radiation, longwave radiation standard deviation, longwave radiation sample counts, - variables - - ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.org/ - MEOPAR, ONC - over - null - - - time +v1: salinity (practical) and temperature variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Changed salinity variable to reference salinity. + Changed temperature variable to conservative temperature. + Added squared buoyancy frequency variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed squared buoyancy frequency variable. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Temperature and salinity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DTracerFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter time - long - Time - time - timeseries_id + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - longitude - longitude - double + + + deptht + depth - https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV - 180.0 - -180.0 - degrees_east + null + null + null + Depth + depth + modelResult + location - - - latitude - latitude - double + + + y + gridY - https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV - 90.0 - -90.0 - degrees_north + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - nemo_grid_j - nemo_grid_j - short + + + x + gridX - https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV - count - -999 mean a longitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - nemo_grid_i - nemo_grid_i - short + vosaline + salinity + float - https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV - count - -999 mean a latitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument + Reference Salinity + null + 34.0 + 0.0 + null + modelResult + null + null + null + null + null + salinity - on_crossing_mask - on_crossing_mask - byte + votemper + temperature + float - https://data.oceannetworks.ca/DataSearch?location=TWDP + Conservative Temperature + null + 20.0 + 4.0 + null + modelResult + null + null + null + null + null + temperature - - crossing_number - crossing_number - double - + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + auxilary, cell_thickness, density, deptht, +downwelling_photosynthetic_photon_radiance_in_sea_water, e3t, +Oceans > Ocean Chemistry > Inorganic Matter, +Oceans > Ocean Optics > Photosynthetically Active Radiation, +Oceans > Ocean Optics > Radiance, +Oceans > Salinity/Density > Density, +Oceans > Marine Sediments > Suspended Solids, +Fraser_tracer, Fraser River, fraser_river_turbidity_tracer, ocean, oceans, optics, +PAR, photon, photosynthetic, photosynthetically, radiance, radiation, river, +sea, sea_water_sigma_theta, seawater, sediment, sediments, sigma, sigma0, sigma_theta, solids, suspended, +t-cell, thickness, time_counter, tracer, turbidity, water + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 + +3d auxiliary model field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology, and chemistry. +The values are calculated for the entire model grid that includes Juan de Fuca Strait, +he Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of +Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v19-05: Photosynthetically available radiation (PAR), Potential density anomaly (sigma_theta), + Time-varying z-layer thickness (NEMO e3t), Fraser River water turbidity. + NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Potential density anomaly (sigma_theta) field from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DAuxiliaryFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time + - https://data.oceannetworks.ca/DataSearch?location=TWDP - 10.0 - 0.0 + null + null + time_counter + seconds since 1900-01-01T00:00:00Z + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - temperature - temperature - double + + + deptht + depth - potential temperature - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - 25.0 - 4.0 + null + null + Depth + depth + modelResult + location - - - temperature_std_dev - temperature_std_dev - double + + + y + gridY - potential temperature standard deviation - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - temperature_sample_count - temperature_sample_count - int + + + x + gridX - potential temperature sample count - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - conductivity - conductivity - double + PAR + PAR + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + Photosynthetically Available Radiation + 350.0 0.0 - 5.0 + null + downwelling_photosynthetic_radiative_flux_in_sea_water + modelResult + null + null + null + null + null + optical_properties - conductivity_std_dev - conductivity_std_dev - double + sigma_theta + sigma_theta + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + Potential Density Anomaly + 26.0 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography - conductivity_sample_count - conductivity_sample_count - int + e3t + e3t + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + Time-Varying z-Layer Thickness + null + 0.0 + 30.0 + modelResult + null + null + null + null + null + numerics - salinity - salinity - double + Fraser_tracer + fraserTurbidity + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - 34.0 + Fraser River Turbidity + null 0.0 + 30.0 + modelResult + null + null + null + null + null + optical_properties - - salinity_std_dev - salinity_std_dev - double + + + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_U\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time, time_counter, u velocity component, velocity along x-axis, vozocrtx + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d zonal (u) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: uVelocity variable. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DuGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time - - - salinity_sample_count - salinity_sample_count - int + + + depthu + depth - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + null + null + null + null + depth + modelResult + location - - - o2_saturation - o2_saturation - double + + + y + gridY - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - 180.0 - 0.0 - percent + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - o2_saturation_std_dev - o2_saturation_std_dev - double + + + x + gridX - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - percent + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - o2_saturation_sample_count - o2_saturation_sample_count - int + vozocrtx + uVelocity + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + Ocean Current Along x-axis + sea_water_x_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents - - o2_concentration_corrected - o2_concentration_corrected - double + + + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_V\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time, time_counter, v velocity component, velocity along y-axis, vomecrty + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d meridional (v) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: vVelocity variable. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DvGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - 1.0 - 0.0 + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time - - - o2_concentration_corrected_std_dev - o2_concentration_corrected_std_dev - double + + + depthv + depth - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + null + null + null + null + Depth + depth + modelResult + location - - - o2_concentration_corrected_sample_count - o2_concentration_corrected_sample_count - int + + + y + gridY - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - o2_temperature - o2_temperature - double + + + x + gridX - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - 500.0 - 0.0 + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - o2_temperature_std_dev - o2_temperature_std_dev - double + vomecrty + vVelocity + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + Ocean Current Along y-axis + sea_water_y_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents - - o2_temperature_sample_count - o2_temperature_sample_count - int + + + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_W\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, +Oceans > Ocean Circulation > Diffusion, +Oceans > Ocean Circulation > Ocean Currents, +Oceans > Ocean Circulation > Upwelling/Downwelling, +sea, seawater, time, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, +w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, +vovecrtz + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d vertical (w) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: vVelocity, turbulent kinetic energy dissipation rate, vertical eddy diffusivity, vertical eddy viscosity variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DwGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time - - - cdom_fluorescence - cdom_fluorescence - double + + + depthw + depth - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - 1.0 - 0.0 + null + null + null + null + Depth + depth + modelResult + location - - - cdom_fluorescence_std_dev - cdom_fluorescence_std_dev - double + + + y + gridY - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - cdom_fluorescence_sample_count - cdom_fluorescence_sample_count - int + + + x + gridX - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - chlorophyll - chlorophyll - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - 70.0 - 0.0 - - - - chlorophyll_std_dev - chlorophyll_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - - - - chlorophyll_sample_count - chlorophyll_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - - - - turbidity - turbidity - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - - - - turbidity_std_dev - turbidity_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - - - - turbidity_sample_count - turbidity_sample_count - int + dissipation + dissipation + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + Turbulent Kinetic Energy Dissipation Rate + turbulent_kinetic_energy_dissipation_in_sea_water + null + null + modelResult + null + null + null + null + null + physical_oceanography - co2_partial_pressure - co2_partial_pressure - double + vert_eddy_diff + vert_eddy_diff + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + Vertical Eddy Diffusivity + ocean_vertical_heat_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography - co2_partial_pressure_std_dev - co2_partial_pressure_std_dev - double + vert_eddy_visc + vert_eddy_visc + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + Vertical Eddy Viscosity + ocean_vertical_momentum_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography - co2_partial_pressure_sample_count - co2_partial_pressure_sample_count - int + vovecrtz + wVelocity + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + Ocean Vertical Velocity + upward_sea_water_velocity + null + 0.5 + -0.5 + null + modelResult + null + null + null + null + null + currents - - co2_concentration_linearized - co2_concentration_linearized - double - + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, +Biological Classification > Protists > Diatoms, +biosphere, +Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, +chemistry, ciliates, concentration, depth, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, +flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, +mole_concentration_of_ammonium_in_sea_water, +mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, +mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, +Oceans > Ocean Chemistry > Ammonia, +Oceans > Ocean Chemistry > Nitrate, +Oceans > Ocean Chemistry > Nitrogen, +Oceans > Ocean Chemistry > Organic Matter, +Oceans > Ocean Chemistry > Silicate, +organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, +silicate, silicon, time, time_counter, tracer, water, zooplankton + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 + +3d SMELT biological model field values averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v19-05: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), + diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, + nitrate, particulate organic nitrogen, silicon. + Fraser River water turbidity tracer variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d SMELT biological model field values from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DBiologyFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. +Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. +J. Geophys. Res. Oceans, 121(3), 1600–1625. +https://dx.doi.org/10.1002/2015JC011118 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + +Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. +Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. +J. Geophys. Res. Oceans, 125(8). +https://doi.org/10.1029/2019JC015766 + + over + null + null + null + + + time_counter + time + - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - 1.0 + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + deptht + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + ammonium + ammonium + float + + + null + 5.0 0.0 + null + modelResult + null + null + null + null + null + dissolved_nutrients - co2_concentration_linearized_std_dev - co2_concentration_linearized_std_dev - double + biogenic_silicon + biogenic_silicon + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + null + null + 0 + 70.0 + modelResult + null + null + null + null + null + dissolved_nutrients - co2_concentration_linearized_sample_count - co2_concentration_linearized_sample_count - int + ciliates + ciliates + float - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + null + null + modelResult + null + null + null + null + null + biology - - air_temperature - air_temperature - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 40.0 - -10.0 - Meteorology - - - - air_temperature_std_dev - air_temperature_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 50.0 - 0.0 - Meteorology - - - - air_temperature_sample_count - air_temperature_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 100.0 - 0.0 - Meteorology - - - - relative_humidity - relative_humidity - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 100.0 - 0.0 - Meteorology - percent - - - - relative_humidity_std_dev - relative_humidity_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 5.0 - 0.0 - Meteorology - percent - - - - relative_humidity_sample_count - relative_humidity_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID - null - 100.0 - 0.0 - Meteorology - - - - barometric_pressure - barometric_pressure - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS - null - 1050.0 - 950.0 - Pressure - - - - barometric_pressure_std_dev - barometric_pressure_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS - null - 50.0 - 0.0 - Pressure - - - - barometric_pressure_sample_count - barometric_pressure_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS - null - 100.0 - 0.0 - Pressure - - - - solar_radiation - solar_radiation - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER - null - 500.0 - -500.0 - - - - solar_radiation_std_dev - solar_radiation_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER - null - 50.0 - 0.0 - - - - solar_radiation_sample_count - solar_radiation_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER - null - 100.0 - 0.0 - - - - longwave_radiation - longwave_radiation - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER - null - 500.0 - -500.0 - - - - longwave_radiation_std_dev - longwave_radiation_std_dev - double - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER - null - 50.0 - 0.0 - - - - longwave_radiation_sample_count - longwave_radiation_sample_count - int - - - https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER - null - 100.0 - 0.0 - - - - - - 10080 - 10000 - /results/SalishSea/climatology/ - .*seasonal_ts-30_\d{4}\.nc$ - true - .* - last - 20 - false - false - - - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - grid, ocean, oceans, -Oceans > Ocean Temperature > Conservative Temperature, -Oceans > Salinity/Density > Salinity, -reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, -conservative temperature, time_counter, vosaline, votemper, water - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 - -2d depth-averaged salinity and water temperature field values -averaged over 3 month seasonal intervals from Salish Sea NEMO model nowcast runs. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, -the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -The variable values are averaged over the upper 22 layers of the model grid, -approximately 0 to 30 metres depth. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: - reference salinity and conservative temperature variables - - Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - over - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -3 month seasonal-averaged 2d depth-averaged salinity and water temperature fields from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg2DTracerFieldsSeasonalV17-02. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - null - null - null - null - depth-averaged seasonal average T grid variables - - - time_counter - time + + null + 128.0 + 0.0 + null + modelResult + null + null + null + null + null + biology + + + + mesozooplankton + mesozooplankton + float - null - null - time_counter + null + null modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time + null + null + null + null + null + biology - - - y - gridY + + + microzooplankton + microzooplankton + float - Y + null + null modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + null + null + null + null + biology - - - x - gridX + + + nitrate + nitrate + float - X + null + 40.0 + 0 + null modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + null + null + null + null + dissolved_nutrients - + - vosalineoverdepth - salinity + particulate_organic_nitrogen + particulate_organic_nitrogen float + null null - salinity - 0.0 - 34.0 modelResult null null null null null - salinity + dissolved_nutrients - votemperoverdepth - temperature + silicon + silicon float + null + 70.0 + 0 null - temperature - 4.0 - 20.0 modelResult null null null null null - temperature + dissolved_nutrients - + 10080 10000 - /results/SalishSea/rolling-forecasts/ - .*SoG_ww3_fields_\d{8}_\d{8}\.nc$ + /results/SalishSea/month-avg.201905/ true - .* + .*SalishSea_1m_\d{6}_\d{6}_grid_T\.nc$ last 20 false false - now+24hours - null + now-36days Grid - COARDS, CF-1.6, ACDD-1.3 - null - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS & DFO IOS + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - atmosphere, -Atmosphere &gt; Atmospheric Winds &gt; Surface Winds, -atmospheric, breaking wave height, circulation, currents, direction, drift, -eastward_sea_water_velocity, eastward_surface_stokes_drift, eastward_wave_to_ocean_stress, eastward_wind, -energy, flux, foc, frequency, height, latitude, length, local, longitude, mean, mean_wave_length, moment, -northward, northward_sea_water_velocity, northward_surface_stokes_drift, northward_wave_to_ocean_stress, northward_wind, ocean, oceans, -Oceans &gt; Ocean Circulation &gt; Ocean Currents, -Oceans &gt; Ocean Waves &gt; Significant Wave Height, -Oceans &gt; Ocean Waves &gt; Wave Frequency, -Oceans &gt; Ocean Waves &gt; Wave Period, -Oceans &gt; Ocean Waves &gt; Wave Spectra, -Oceans &gt; Ocean Waves &gt; Wave Speed/Direction, -Oceans &gt; Ocean Waves &gt; Wind Waves, -peak, period, sea, sea_surface_wave_from_direction, sea_surface_wave_peak_direction, sea_surface_wave_peak_frequency, -sea_surface_wave_significant_height, sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment, -seawater, second, significant, significant_breaking_wave_height, source, spectra, spectral, speed, stokes, stress, surface, -swell, t02, time, ucur, utwo, uuss, uwnd, variance, vcur, velocity, vtwo, vuss, vwnd, water, wave, wave_to_ocean_energy_flux, -waves, wcc, wch, whitecap coverage, whitecap_coverage, wind, winds - GCMD Science Keywords - null - The SalishSeaCast model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + depth, deptht, grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - null - null - null CF Standard Name Table v29 - null - null - Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 + Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 -Rolling daily forecast of 2d wave field values calculated at 30 minute intervals -from the most recent Strait of Georgia WaveWatch III® model forecast runs. -The values are calculated for a model grid that covers the Strait of Georgia -on the coast of British Columbia. The time values are UTC. +3d salinity and water temperature field values averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -The Strait of Georgia WaveWatch III® model grid and configuration were developed -by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model -is forced with currents from the Salish Sea NEMO model and the same ECCC HRDPS -GEM 2.5km resolution winds that are used to force the NEMO model. +v19-05: reference salinity, and conservative temperature variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:30:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. +Reference wording: -v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - gemmrich@uvic.ca - https://salishsea-meopar-docs.readthedocs.io/ - Fisheries & Oceans Canada, MEOPAR, ONC, Compute Canada +Temperature and salinity fields from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DTracerFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null - null null + null null - time + time_counter time - - null - modelResult - time values are UTC - - - - latitude - latitude - - null - Latitude - degrees_north + null + null modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time - longitude - longitude - - - null - Longitude - degrees_east - modelResult - - - - ucur - ucur - float + deptht + depth + null null - null - 0.5 - -0.5 - null + null + Depth + depth + modelResult + location - - - vcur - vcur - float + + + y + gridY - null - null - 0.5 - -0.5 - null + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + - uwnd - uwnd + vosaline + salinity float - null - null - 15.0 - -15.0 - Eastward Wind - null + Reference Salinity + null + 34.0 + 0.0 + null + modelResult + null + null + null + null + null + salinity - vwnd - vwnd + votemper + temperature float - null - null - 15.0 - -15.0 - Northward Wind - null + Conservative Temperature + null + 20.0 + 4.0 + null + modelResult + null + null + null + null + null + temperature - - hs - hs - float + + + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly + +Forecasted 3d zonal (u) component velocity field values averaged over 1 hour intervals +from the most recent SalishSeaCast NEMO model forecast run. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: uVelocity variable +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted 3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSf3DuGridFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time - significant height of wind waves null - null - 2.0 - 0.0 - null + null + time_counter + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - lm - lm - float + + + depthu + depth null - null - 4000.0 - 0.0 - null + null + null + null + Depth + depth + modelResult + location - - - t02 - t02 - float + + + y + gridY - null - null - 50.0 - 0.0 - null + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - fp - fp - float + + + x + gridX - null - null - 15000.0 - 0.0 - null + Grid X + x + X + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - dir - dir + vozocrtx + uVelocity float + Ocean Current Along x-axis + sea_water_x_velocity null - null - 360.0 - 0.0 - null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + + + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly + +Forecasted 3d meridional (v) component velocity field values averaged over 1 hour intervals +from the most recent SalishSeaCast NEMO model forecast run. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: vVelocity variable +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted 3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSf3DvGridFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time + + + null + null + time_counter + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - dp - dp - float + + + depthv + depth null - null - 360.0 - 0.0 - null + null + null + null + Depth + depth + modelResult + location - - - wcc - wcc - float + + + y + gridY - null - null - 15000.0 - 0.0 - null + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - wch - wch - float + + + x + gridX - null - null - 40000.0 - 0.0 - null + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - utwo - utwo + vomecrty + vVelocity float + Ocean Current Along y-axis + sea_water_y_velocity null - null - 40000.0 - -40000.0 - null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents - - vtwo - vtwo - float - + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + deptht, grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Mixed Layer, +Oceans > Sea Surface Topography > Sea Surface Height, +mixed_depth, mixed_layer_depth, ocean_mixed_layer_thickness_defined_by_sigma_theta, +mixed layer depth (dsigma = 0.01 wrt 10m), +sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, +sossheig, time_counter, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, Surface Tracer Fields, Hourly +Rolling daily forecast of 2d sea surface height and mixed layer depth field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics and biology. The values are calculated for the surface of the model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v1: sea surface height and rainfall rate variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Deleted rainfall rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + Added mixed layer depth variable (dsigma = 0.01 wrt 10m) +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed mixed layer depth variable +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, Surface Tracer Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfSurfaceTracerFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + ocean surface T grid variables + + + time_counter + time + - null - null - 40000.0 - -40000.0 - null + null + null + modelResult + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time - - - foc - foc - float + + + y + gridY - null - null - 12000.0 - 0.0 - null + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - - - uuss - uuss - float + + + x + gridX - null - null - 15000.0 - -15000.0 - null + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location - + - vuss - vuss + sossheig + ssh float - - null - null - 15000.0 - -15000.0 - null + Sea Surface Height + sea_surface_height_above_geoid + null + null + sea_level + -4.0 + 4.0 + modelResult + null + null + null + null + null + sea_level - - /opp/fvcom/nowcast/ - .* - .*vhfr_low_v2_[0s].*\.nc$ - true + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*CHS_currents\.nc$ + true + .* + last + 20 + false + false + now+24hours Grid - (local files) - fileType - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS & DFO IOS - model results, file, identifier, lastModified, modified, name, size, time - The SalishSeaCast model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + COARDS, CF-1.6, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, east, eastward, +eastward_sea_water_velocity_upper_10_grid_levels, +eastward_sea_water_velocity_upper_5_grid_levels, +north, northward, northward_sea_water_velocity_upper_10_grid_levels, +northward_sea_water_velocity_upper_5_grid_levels, +ocean, oceans, Oceans > Ocean Circulation > Ocean Currents, sea, seawater, time, +VelEast10, VelEast5, VelNorth10, VelNorth5, velocity, water + The SalishSeaCast NEMO model results are copyright + by the SalishSeaCast Project Contributors and The University of British Columbia. -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 - Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 + They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, Near-surface Depth Averaged Currents, 1h -Barotropic sea surface height, and currents from VHFR low resolution V2 configuration -FVCOM model runs. -The values are calculated for an unstructured model grid that covers Vancouver Harbour, -English Bay, and the lower Fraser River on the coast of British Columbia. +Rolling daily forecast of eastward and northward water current component field values averaged over 1 hour +intervals for the upper 5 and 10 metres of depth from SalishSeaCast NEMO model runs with physics and biology. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, +the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +The velocity component values are averaged over the upper 5 and 10 metre depths. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations -were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. -The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity -from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS -GEM 2.5km resolution winds that are used to force the NEMO model. +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. -V2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Salish Sea MEOPAR Project Contributors - Michael.Dunphy@dfo-mpo.gc.ca +v17-02: VelEast10, VelEast5, VelNorth10, VelNorth5 variables; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, Near-surface Depth Averaged Currents, 1h + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - Fisheries & Oceans Canada, MEOPAR, ONC, Compute Canada - null + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted near-surface depth averaged water current component fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfDepthAvgdCurrents1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + + time_counter + time + + + null + minutes since 1970-01-01T00:00:00Z + modelResult + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + gridY + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + gridX + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + - url - url - String + VelEast10 + VelEast10 + float + null + 8.0 + -8.0 + currents - name - name - String + VelNorth10 + VelNorth10 + float + null + 8.0 + -8.0 + currents - lastModified - lastModified - double + VelNorth5 + VelNorth5 + float + null + 8.0 + -8.0 + currents - size - size - double + VelEast5 + VelEast5 + float - - - - fileType - fileType - String - - .*(\..+?) - 1 - Identifier - File Type + null + 8.0 + -8.0 + currents - - /opp/fvcom/ - /opp/fvcom/(|nowcast-x2/.*|most_recent_forecast/) - .*vh_x2_[0s].*\.nc$ - true + 10080 - - - Grid - (local files) - fileType - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS & DFO IOS - model results, file, identifier, lastModified, modified, name, size, time - The SalishSeaCast model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 - Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 + CF Standard Name Table v29 + Forecast, Boundary Bay, Sea Surface Height, 10min -Baroclinic sea surface height, currents, temperature, and salinity from -VHFR X2 configuration FVCOM model runs. -The values are calculated for an unstructured model grid that covers Vancouver Harbour, -English Bay, and the lower Fraser River on the coast of British Columbia. -From 2019-02-06 onward the model runs include Fraser River discharge forcing based on -daily average discharges from river gauge at Hope with a 1 day lag. -The river temperature is climatological. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Boundary Bay tide gauge station on a US boundary marker buoy, +south of Delta, British Columbia. The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations -were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. -The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity -from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS -GEM 2.5km resolution winds that are used to force the NEMO model. +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. -X2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Salish Sea MEOPAR Project Contributors - Michael.Dunphy@dfo-mpo.gc.ca - https://salishsea-meopar-docs.readthedocs.io/ - Fisheries & Oceans Canada, MEOPAR, ONC, Compute Canada - null +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Boundary Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Boundary Bay from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfBoundaryBaySSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult - - url - url - String - - - - - - name - name - String - - - - - - lastModified - lastModified - double - - - - - - size - size - double - - - - - - fileType - fileType - String - - .*(\..+?) - 1 - Identifier - File Type - - + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + - - /opp/fvcom/nowcast-r12/ - .* - .*vh_r12_[0s].*\.nc$ - true + 10080 - - - Grid - (local files) - fileType - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS & DFO IOS - model results, file, identifier, lastModified, modified, name, size, time - The SalishSeaCast model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 - Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 + CF Standard Name Table v29 + Forecast, Campbell River, Sea Surface Height, 10min -Baroclinic sea surface height, currents, temperature, and salinity from -VHFR R12 configuration FVCOM model runs. -The values are calculated for an unstructured model grid that covers Vancouver Harbour, -English Bay, and the lower Fraser River on the coast of British Columbia. -The model runs include Fraser River discharge forcing based on -daily average discharges from river gauge at Hope with a 1 day lag. -The river temperature is climatological. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Campbell River tide gauge station at the north end of the Strait of Georgia, +near Campbell River, British Columbia. The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations -were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. -The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity -from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS -GEM 2.5km resolution winds that are used to force the NEMO model. +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. -R12: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Salish Sea MEOPAR Project Contributors - Michael.Dunphy@dfo-mpo.gc.ca - https://salishsea-meopar-docs.readthedocs.io/ - Fisheries & Oceans Canada, MEOPAR, ONC, Compute Canada - null - - - url - url - String - - - - - - name - name - String - - - - - - lastModified - lastModified - double - - - - - - size - size - double - - - - - - fileType - fileType - String - - .*(\..+?) - 1 - Identifier - File Type - - - +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Campbell River, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. - - /opp/wwatch3/ - /opp/wwatch3/(|nowcast/.*|most_recent_forecast/) - .*SoG_ww3_.*\.nc$ - true - 10080 - - - Grid - (local files) - fileType - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS & DFO IOS - model results, file, identifier, lastModified, modified, name, size, time - The SalishSeaCast model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. +Reference wording: -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - Files, WAVEWATCH III®, Strait of Georgia, V17-02 - Files, WAVEWATCH III®, Strait of Georgia, V17-02 +Forecasted sea surface height time series at Campbell River from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfCampbellRiverSSH10m. -2d wave field values from the Strait of Georgia WaveWatch III® model runs. -The values are calculated for a model grid that covers the Strait of Georgia -on the coast of British Columbia. The time values are UTC. +Citations: -The Strait of Georgia WaveWatch III® model grid and configuration were developed -by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model -is forced with currents from the Salish Sea NEMO model and the same ECCC HRDPS -GEM 2.5km resolution winds that are used to force the NEMO model. +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 -v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Salish Sea MEOPAR Project Contributors - gemmrish@uvic.ca - https://salishsea-meopar-docs.readthedocs.io/ - Fisheries & Oceans Canada, MEOPAR, ONC, Compute Canada - null +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult - - url - url - String - - - - - - name - name - String - - - - - - lastModified - lastModified - double - - - - - - size - size - double - - - - - - fileType - fileType - String - - .*(\..+?) - 1 - Identifier - File Type - - + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + - + 10080 10000 - /opp/observations/AISDATA/netcdf/ - .*VFPA_2ND_NARROWS_HADCP_2s_\d{6}\.nc$ + /results/SalishSea/rolling-forecasts/nemo/ true - .* + .*CherryPoint\.nc$ last - - - - - time - time + 20 false false - - - - now-2days - COARDS, CF-1.6, ACDD-1.3 - Salish Sea MEOPAR Project Contributors - sallen@eos.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, DFO IOS, VFPA - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UCB EOAS & DFO IOS - Earth, Ocean & Atmospheric Sciences, University of British Columbia; and Fisheries and Oceans Canada, Institute of Ocean Sciences - ADCP, 2nd Narrows Rail Bridge, circulation, current, currents, direction, -Earth Science > Oceans > Ocean Circulation > Ocean Currents, -UBC EOAS, DFO IOS, Vancouver Harbour, latitude, longitude, ocean, oceans, sea, sea_water_direction, sea_water_speed, seawater, -speed, time, Vancouver Fraser Port Authority, velocity - GCMD Science Keywords - The Salish Sea MEOPAR observation datasets are copyright -by the Salish Sea MEOPAR Project Contributors, The University of British Columbia, and Ocean Networks Canada. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - -Raw instrument data on which this dataset is based were provided by the Vancouver Fraser Port Authority. - VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 - VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 - -Current data from Vancouver Fraser Port Authority (VFPA) horizontal acoustic doppler current profiler (HADCP) instrument located at the 2nd Narrows Rail Bridge. The time values are UTC. - -v1: current speed and direction variables - (local files) - CF Standard Name Table v29 - over - null - - - time - time - double - - - null - Time - time - seconds since 1970-01-01T00:00:00Z - timeseries_id - - - - speed - speed - double - - - null - 5.0 - 0.0 - null - Currents - - - - direction - direction - double - - - null - 360.0 - 0.0 - null - Currents - - - - longitude - longitude - double - - - Location - - - - latitude - latitude - double - - - Location - - - - - - 10080 - 10000 -/results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ - last - 20 - false - false - now-16hours + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthu, u grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 + Forecast, Cherry Point, Sea Surface Height, 10min -Variable values at the 3d zonal (u) component velocity grid points averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Cherry Point tide gauge station at the south end of the Strait of Georgia, +near Birch Bay, Washington. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: uVelocity variable -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + + Forecast, Cherry Point, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -4974,11 +6171,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d zonal (u) component velocity fields from the SalishSeaCast model +Forecasted sea surface height time series at Cherry Point from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DuGridFields1hV19-05. +on DATE from dataset ubcSSfCherryPointSSH10m. Citations: @@ -4990,96 +6187,81 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null time_counter time - + T + time + Time Axis null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time - - - - depthu - depth - - - null - null - depth modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - vozocrtx - uVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 8.0 - -8.0 + null + 4.0 + -4.0 null modelResult null @@ -5087,64 +6269,77 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents + sea_level - - 10080 - 10000 - /results/SalishSea/month-avg.201905/ - true - .*SalishSea_1m_\d{6}_\d{6}_grid_U\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*FridayHarbor\.nc$ + last + 20 + false + false - now-36days + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthu, u grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_x_velocity, seawater, time, time_counter, u velocity component, velocity along x-axis, vozocrtx - + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords The SalishSeaCast NEMO model results are copyright by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 + Forecast, Friday Harbor, Sea Surface Height, 10min -Variable values at the 3d zonal (u) component velocity grid points averaged over 1 month intervals -from SalishSeaCast NEMO model runs with physics, biology and chemistry. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, -Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Friday Harbor tide gauge station in the San Juan Islands, +near Friday Harbor, Washington. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v19-05: uVelocity variable. - NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. - - Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Friday Harbor, Sea Surface Height, 10min SalishSeaCast NEMO Model SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -5153,11 +6348,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d zonal (u) component velocity fields from the SalishSeaCast model +Forecasted sea surface height time series at Friday Harbor from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DuGridFields1moV19-05. +on DATE from dataset ubcSSfFridayHarborSSH10m. Citations: @@ -5169,96 +6364,81 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null time_counter time - + T + time + Time Axis null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time - - - - depthu - depth - - - null - null - depth modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - vozocrtx - uVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 8.0 - -8.0 + null + 4.0 + -4.0 null modelResult null @@ -5266,69 +6446,76 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents + sea_level - - 10080 - 10000 - /results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*HalfmoonBay\.nc$ + last + 20 + false + false - now-16hours + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthv, v grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 + Forecast, Halfmoon Bay, Sea Surface Height, 10min -Variable values at the 3d meridional (v) component velocity grid points averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Halfmoon Bay tide gauge station on the Sunshine Coast side of the Strait of Georgia, +near Halfmoon Bay, British Columbia. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: vVelocity variable -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Halfmoon Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -5337,11 +6524,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d meridional (v) component velocity fields from the SalishSeaCast model +Forecasted sea surface height time series at Halfmoon Bay from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DvGridFields1hV19-05. +on DATE from dataset ubcSSfHalfmoonBaySSH10m. Citations: @@ -5352,97 +6539,82 @@ https://dx.doi.org/10.1080/07055900.2015.1108899 Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time - - - null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time - - - - depthv - depth - + over + null + null + null + + + time_counter + time + T + time + Time axis null - null - depth + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - vomecrty - vVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 8.0 - -8.0 + null + 4.0 + -4.0 null modelResult null @@ -5450,63 +6622,76 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents + sea_level - - 10080 - 10000 - /results/SalishSea/month-avg.201905/ - true - .*SalishSea_1m_\d{6}_\d{6}_grid_V\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*Nanaimo\.nc$ + last + 20 + false + false - now-36days + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthv, v grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_y_velocity, seawater, time, time_counter, v velocity component, velocity along y-axis, vomecrty - + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords The SalishSeaCast NEMO model results are copyright by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + Forecast, Nanaimo, Sea Surface Height, 10min -Variable values at the 3d meridional (v) component velocity grid points averaged over 1 month intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Nanaimo tide gauge station on the Vancouver Island side of the Strait of Georgia, +near Nanaimo, British Columbia. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v19-05: vVelocity variable. - NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + Forecast, Nanaimo, Sea Surface Height, 10min SalishSeaCast NEMO Model SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -5515,11 +6700,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d meridional (v) component velocity fields from the SalishSeaCast model +Forecasted sea surface height time series at Nanaimo from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DvGridFields1moV19-05. +on DATE from dataset ubcSSfNanaimoSSH10m. Citations: @@ -5531,96 +6716,81 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null time_counter time - + T + time + Time axis null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time - - - - depthv - depth - - - null - null - depth modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - vomecrty - vVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 8.0 - -8.0 + null + 4.0 + -4.0 null modelResult null @@ -5628,72 +6798,73 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents + sea_level - - 10080 - 10000 - /results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_W\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*NeahBay\.nc$ + last + 20 + false + false - now-16hours + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, -Oceans > Ocean Circulation > Diffusion, -Oceans > Ocean Circulation > Ocean Currents, -Oceans > Ocean Circulation > Upwelling/Downwelling, -sea, seawater, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, -w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, -vovecrtz + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 + Forecast, Neah Bay, Sea Surface Height, 10min -Variable values at the 3d vertical (w) component velocity grid points averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Neah Bay tide gauge station on the south side of the western end of the Juan de Fuca Strait, +near Neah Bay, Washington. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: wVelocity variable -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. - Renamed eddy viscosity & diffusivity variables to vert_eddy_visc & vert_eddy_diff - Added turbulent kinetic energy dissipation rate variable. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Neah Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ MEOPAR, ONC, Compute Canada @@ -5705,11 +6876,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +Forecasted sea surface height time series at Neah Bay from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DwGridFields1hV19-05. +on DATE from dataset ubcSSfNeahBaySSH10m. Citations: @@ -5721,189 +6892,81 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null time_counter time - + T + time + Time axis null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time - - - - depthw - depth - - - null - null - depth modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - dissipation - dissipation - float - - - null - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vert_eddy_diff - vert_eddy_diff - float - - - null - 0.1 - 0.0 - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vert_eddy_visc - vert_eddy_visc - float - - - null - 0.1 - 0.0 - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vovecrtz - wVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 0.5 - -0.5 + null + 4.0 + -4.0 null modelResult null @@ -5911,67 +6974,76 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents + sea_level - - 10080 - 10000 - /results/SalishSea/month-avg.201905/ - true - .*SalishSea_1m_\d{6}_\d{6}_grid_W\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*NewWestminster\.nc$ + last + 20 + false + false - now-36days + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, -Oceans > Ocean Circulation > Diffusion, -Oceans > Ocean Circulation > Ocean Currents, -Oceans > Ocean Circulation > Upwelling/Downwelling, -sea, seawater, time, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, -w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, -vovecrtz - + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords The SalishSeaCast NEMO model results are copyright by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + Forecast, New Westminster, Sea Surface Height, 10min -Variable values at the 3d vertical (w) component velocity grid points averaged over 1 month intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the New Westminster tide gauge station in the lower Fraser River, +near New Westminster, British Columbia. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v19-05: vVelocity, turbulent kinetic energy dissipation rate, vertical eddy diffusivity, vertical eddy viscosity variables. - NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + Forecast, New Westminster, Sea Surface Height, 10min SalishSeaCast NEMO Model SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -5980,11 +7052,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +Forecasted sea surface height time series at New Westminster from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DwGridFields1moV19-05. +on DATE from dataset ubcSSfNewWestminsterSSH10m. Citations: @@ -5996,189 +7068,81 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null time_counter time - + T + time + Time axis null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time - - - - depthw - depth - - - null - null - depth modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - dissipation - dissipation - float - - - null - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vert_eddy_diff - vert_eddy_diff - float - - - null - 0.1 - 0.0 - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vert_eddy_visc - vert_eddy_visc - float - - - null - 0.1 - 0.0 - null - modelResult - null - null - null - null - null - physical_oceanography - - - - vovecrtz - wVelocity + sossheig + ssh float + Sea Surface Height + sea_surface_height_above_geoid null - 0.5 - -0.5 + null + 4.0 + -4.0 null modelResult null @@ -6186,59 +7150,54 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 null null null - currents - - - - - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ - last - 20 - false - false + sea_level + + + + + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*PatriciaBay\.nc$ + last + 20 + false + false now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - deptht, grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Mixed Layer, + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, Oceans > Sea Surface Topography > Sea Surface Height, -mixed_depth, mixed_layer_depth, ocean_mixed_layer_thickness_defined_by_sigma_theta, -mixed layer depth (dsigma = 0.01 wrt 10m), -sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, -sossheig, time_counter, water - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Salish Sea, Surface Tracer Fields, Hourly -Rolling daily forecast of 2d sea surface height and mixed layer depth field values averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics and biology. The values are calculated for the surface of the model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. + Forecast, Patricia Bay, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Patricia Bay tide gauge station in Saanich Inlet, +near the Institute of Ocean Sciences and Victoria International Airport, British Columbia. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -6246,18 +7205,18 @@ and extends to 11:55:00 UTC on the 2nd day after the forecast run date. So, for example, after completion of the 10-Nov-2017 forecast run, this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. -v1: sea surface height and rainfall rate variables -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. - Deleted rainfall rate variable. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Added mixed layer depth variable (dsigma = 0.01 wrt 10m) -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Removed mixed layer depth variable -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Salish Sea, Surface Tracer Fields, Hourly - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Patricia Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ MEOPAR, ONC, Compute Canada @@ -6269,11 +7228,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height fields from the SalishSeaCast model +Forecasted sea surface height time series at Patricia Bay from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfSurfaceTracerFields1h. +on DATE from dataset ubcSSfPatriciaBaySSH10m. Citations: @@ -6285,54 +7244,53 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null - ocean surface T grid variables time_counter time - + T + time + Time axis null - null - modelResult + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time + modelResult - y - gridY - + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location @@ -6340,12 +7298,28 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 sossheig ssh float + + Sea Surface Height + sea_surface_height_above_geoid null - null - sea_level - -4.0 + null 4.0 + -4.0 + null modelResult null null @@ -6357,67 +7331,74 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - - 10080 - 10000 - /results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*PointAtkinson\.nc$ + last + 20 + false + false - now-16hours + now+24hours Grid CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia - deptht, grid, ocean, oceans, -Oceans > Ocean Circulation > Sea Surface Topography > Sea Surface Height, -sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, -sossheig, time_counter, water - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 + Forecast, Point Atkinson, Sea Surface Height, 10min -2d sea surface height values averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the surface of the model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Point Atkinson tide gauge station on the north side of English Bay, +near Vancouver, British Columbia. The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -v1: sea surface height and rainfall rate variables -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. - Deleted rainfall rate variable. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - Added mixed layer depth variable (dsigma = 0.01 wrt 10m) -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. - Removed mixed layer depth variable -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; changed biology; +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + + Forecast, Point Atkinson, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -6426,11 +7407,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Sea surface height fields from the SalishSeaCast model +Forecasted sea surface height time series at Point Atkinson from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSgSurfaceTracerFields1hV19-05. +on DATE from dataset ubcSSfPointAtkinsonSSH10m. Citations: @@ -6442,54 +7423,53 @@ Soontiens, N. and Allen, S., 2017. Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. https://dx.doi.org/10.1016/j.ocemod.2017.02.008 over - null null + null null - ocean surface T grid variables time_counter time - + T + time + Time axis null - null - modelResult + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z time + modelResult - - y - gridY - + + nav_lon + longitude - Y + longitude + Longitude + null + null + -127.0 + -121.0 modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location - x - gridX - + nav_lat + latitude - X + latitude + Latitude + null + null + 46.0 + 52.0 modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. location @@ -6497,12 +7477,28 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 sossheig ssh float + + Sea Surface Height + sea_surface_height_above_geoid null - null - sea_level - -4.0 + null 4.0 + -4.0 + null modelResult null null @@ -6514,12 +7510,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*BoundaryBay\.nc$ + .*PortRenfrew\.nc$ last 20 false @@ -6527,14 +7523,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -6542,20 +7538,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Boundary Bay, Sea Surface Height, 10min + Forecast, Port Renfrew, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Boundary Bay tide gauge station on a US boundary marker buoy, -south of Delta, British Columbia. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Port Renfrew tide gauge station on the north side of the western end of the Juan de Fuca Strait, +near Port Renfrew, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -6569,10 +7566,12 @@ v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bat see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Boundary Bay, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Port Renfrew, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ MEOPAR, ONC, Compute Canada @@ -6584,11 +7583,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Boundary Bay from the SalishSeaCast model +Forecasted sea surface height time series at Port Renfrew from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfBoundaryBaySSH10m. +on DATE from dataset ubcSSfPortRenfrewSSH10m. Citations: @@ -6610,7 +7609,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time - Time axis + Time Axis + null + null gregorian seconds since 1900-01-01 00:00:00 1900-01-01 00:00:00 @@ -6626,6 +7627,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -6638,6 +7641,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -6663,7 +7668,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -6678,12 +7686,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*CampbellRiver\.nc$ + .*SandHeads\.nc$ last 20 false @@ -6691,14 +7699,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -6706,20 +7714,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Campbell River, Sea Surface Height, 10min + Forecast, Sand Heads, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Campbell River tide gauge station at the north end of the Strait of Georgia, -near Campbell River, British Columbia. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Sand Heads tide gauge station near the mouth of the main arm of the Fraser River, +near Steveston, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -6733,13 +7742,15 @@ v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bat see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Campbell River, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Sand Heads, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -6748,11 +7759,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Campbell River from the SalishSeaCast model +Forecasted sea surface height time series at Sand Heads from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfCampbellRiverSSH10m. +on DATE from dataset ubcSSfSandHeadsSSH10m. Citations: @@ -6774,7 +7785,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time - Time axis + Time Axis + null + null gregorian seconds since 1900-01-01 00:00:00 1900-01-01 00:00:00 @@ -6790,6 +7803,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -6802,6 +7817,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -6827,7 +7844,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -6842,12 +7862,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*CherryPoint\.nc$ + .*SandyCove\.nc$ last 20 false @@ -6855,14 +7875,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -6870,20 +7890,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Cherry Point, Sea Surface Height, 10min + Forecast, Sandy Cove, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Cherry Point tide gauge station at the south end of the Strait of Georgia, -near Birch Bay, Washington. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Sandy Cove tide gauge station on the north side of English Bay, +near Vancouver, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -6897,12 +7918,15 @@ v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bat see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Cherry Point, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Sandy Cove, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada MEOPAR, ONC, Compute Canada If you use this dataset in your research, please reference it with wording similar to the example below, @@ -6912,11 +7936,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Cherry Point from the SalishSeaCast model +Forecasted sea surface height time series at Sandy Cove from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfCherryPointSSH10m. +on DATE from dataset ubcSSfSandyCoveSSH10m. Citations: @@ -6938,7 +7962,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time - Time axis + Time Axis + null + null gregorian seconds since 1900-01-01 00:00:00 1900-01-01 00:00:00 @@ -6954,6 +7980,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -6966,6 +7994,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -6991,7 +8021,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -7006,12 +8039,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*FridayHarbor\.nc$ + .*Squamish\.nc$ last 20 false @@ -7019,14 +8052,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -7034,20 +8067,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast model results are copyright +by the SalishSeaCast Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Friday Harbor, Sea Surface Height, 10min + Forecast, Squamish, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Friday Harbor tide gauge station in the San Juan Islands, -near Friday Harbor, Washington. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Squamish tide gauge station at the head of Howe Sound, +near Squamish, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -7055,20 +8089,21 @@ and extends to 11:55:00 UTC on the 2nd day after the forecast run date. So, for example, after completion of the 10-Nov-2017 forecast run, this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. - v17-02: sea surface height variable; NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Friday Harbor, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Squamish, Sea Surface Height, 10min + SalishSeaCast Model + SalishSeaCast Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -7077,11 +8112,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Friday Harbor from the SalishSeaCast model +Forecasted sea surface height time series at Squamish from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfFridayHarborSSH10m. +on DATE from dataset ubcSSfSquamishSSH10m. Citations: @@ -7103,6 +8138,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time + Time Axis + null + null Time axis gregorian seconds since 1900-01-01 00:00:00 @@ -7119,6 +8157,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -7131,6 +8171,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -7156,7 +8198,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -7171,12 +8216,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*HalfmoonBay\.nc$ + .*Victoria\.nc$ last 20 false @@ -7184,14 +8229,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -7199,20 +8244,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Halfmoon Bay, Sea Surface Height, 10min + Forecast, Victoria, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Halfmoon Bay tide gauge station on the Sunshine Coast side of the Strait of Georgia, -near Halfmoon Bay, British Columbia. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Victoria tide gauge station in Esquimalt Harbour, +near Victoria, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -7226,13 +8272,15 @@ v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bat see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. - Forecast, Halfmoon Bay, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors + Forecast, Victoria, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -7241,11 +8289,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Halfmoon Bay from the SalishSeaCast model +Forecasted sea surface height time series at Victoria from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfHalfmoonBaySSH10m. +on DATE from dataset ubcSSfVictoriaSSH10m. Citations: @@ -7267,7 +8315,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time - Time axis + Time Axis + null + null gregorian seconds since 1900-01-01 00:00:00 1900-01-01 00:00:00 @@ -7283,6 +8333,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -7295,6 +8347,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -7320,7 +8374,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -7335,12 +8392,12 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - + 10080 10000 /results/SalishSea/rolling-forecasts/nemo/ true - .*Nanaimo\.nc$ + .*WoodwardsLanding\.nc$ last 20 false @@ -7348,14 +8405,14 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 now+24hours Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS Earth, Ocean & Atmospheric Sciences, University of British Columbia 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, @@ -7363,20 +8420,21 @@ Oceans > Sea Surface Topography > Sea Surface Height, sea, sea_surface_height_above_geoid, sossheig, ssh, surface, tides, time_counter, topography GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 CF Standard Name Table v29 - Forecast, Nanaimo, Sea Surface Height, 10min + Forecast, Woodwards Landing, Sea Surface Height, 10min Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Nanaimo tide gauge station on the Vancouver Island side of the Strait of Georgia, -near Nanaimo, British Columbia. +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Woodwards Landing tide gauge station in lower Fraser River, +on the south side of Richmond, British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. This dataset is updated daily to move it forward 1 day in time. It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, @@ -7390,13 +8448,15 @@ v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bat see infoUrl link for full details. v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Forecast, Nanaimo, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +see infoUrl link for full details. + Forecast, Woodwards Landing, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors sallen@eoas.ubc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada If you use this dataset in your research, please reference it with wording similar to the example below, and include citations of the publications below. @@ -7405,11 +8465,11 @@ and the dataset id help to ensure reproducibility of your work. Reference wording: -Forecasted sea surface height time series at Nanaimo from the SalishSeaCast model +Forecasted sea surface height time series at Woodwards Landing from the SalishSeaCast model (Soontiens et al, 2016; Soontiens and Allen, 2017) were downloaded from their ERDDAP server (https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfNanaimoSSH10m. +on DATE from dataset ubcSSfWoodwardsLandingSSH10m. Citations: @@ -7431,7 +8491,9 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 T time - Time axis + Time Axis + null + null gregorian seconds since 1900-01-01 00:00:00 1900-01-01 00:00:00 @@ -7447,6 +8509,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 longitude Longitude + null + null -127.0 -121.0 modelResult @@ -7459,6 +8523,8 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 latitude Latitude + null + null 46.0 52.0 modelResult @@ -7484,7 +8550,10 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 m + Sea Surface Height + sea_surface_height_above_geoid null + null 4.0 -4.0 null @@ -7499,4021 +8568,3600 @@ https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*NeahBay\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/ + .*SoG_ww3_fields_\d{8}_\d{8}\.nc$ + true + .* + last + 20 + false + false now+24hours + null Grid CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography + null + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + atmosphere, +Atmosphere &gt; Atmospheric Winds &gt; Surface Winds, +atmospheric, breaking wave height, circulation, currents, direction, drift, +eastward_sea_water_velocity, eastward_surface_stokes_drift, eastward_wave_to_ocean_stress, eastward_wind, +energy, flux, foc, frequency, height, latitude, length, local, longitude, mean, mean_wave_length, moment, +northward, northward_sea_water_velocity, northward_surface_stokes_drift, northward_wave_to_ocean_stress, northward_wind, ocean, oceans, +Oceans &gt; Ocean Circulation &gt; Ocean Currents, +Oceans &gt; Ocean Waves &gt; Significant Wave Height, +Oceans &gt; Ocean Waves &gt; Wave Frequency, +Oceans &gt; Ocean Waves &gt; Wave Period, +Oceans &gt; Ocean Waves &gt; Wave Spectra, +Oceans &gt; Ocean Waves &gt; Wave Speed/Direction, +Oceans &gt; Ocean Waves &gt; Wind Waves, +peak, period, sea, sea_surface_wave_from_direction, sea_surface_wave_peak_direction, sea_surface_wave_peak_frequency, +sea_surface_wave_significant_height, sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment, +seawater, second, significant, significant_breaking_wave_height, source, spectra, spectral, speed, stokes, stress, surface, +swell, t02, time, ucur, utwo, uuss, uwnd, variance, vcur, velocity, vtwo, vuss, vwnd, water, wave, wave_to_ocean_energy_flux, +waves, wcc, wch, whitecap coverage, whitecap_coverage, wind, winds GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + null + The SalishSeaCast model results are copyright by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + null + null + null + null + null + null + null CF Standard Name Table v29 - Forecast, Neah Bay, Sea Surface Height, 10min + null + null + Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Neah Bay tide gauge station on the south side of the western end of the Juan de Fuca Strait, -near Neah Bay, Washington. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +Rolling daily forecast of 2d wave field values calculated at 30 minute intervals +from the most recent Strait of Georgia WaveWatch III® model forecast runs. +The values are calculated for a model grid that covers the Strait of Georgia +on the coast of British Columbia. The time values are UTC. + +The Strait of Georgia WaveWatch III® model grid and configuration were developed +by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model +is forced with currents from the SalishSeaCast NEMO model and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Neah Bay, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca +v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + gemmrich@uvic.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Neah Bay from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfNeahBaySSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + Fisheries & Oceans CanadaCast, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada over + null null null null - time_counter + time time + + + modelResult + Julian Day (UT) + time values are UTC + null + + + + latitude + latitude + + + modelResult + Latitude + degrees_north + null + + + + longitude + longitude + + + modelResult + Longitude + degrees_east + null + + + + ucur + ucur + float + + + modelResult + Eastward Current + 0.5 + -0.5 + null + null + null + + + + vcur + vcur + float + + + Northward Current + 0.5 + -0.5 + null + null + null + + + + uwnd + uwnd + float + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + Eastward Wind + 15.0 + -15.0 + null + null + null - - - nav_lon - longitude + + + vwnd + vwnd + float + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + Northward Wind + 15.0 + -15.0 + null + null + null - - - nav_lat - latitude + + + hs + hs + float + - latitude - Latitude - 46.0 - 52.0 - modelResult - location + Significant Height of Wind Waves + 2.0 + 0.0 + null + null + null - + - sossheig - ssh + lm + lm float - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + Mean Wave Length + 4000.0 + 0.0 + null + null + null - - - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*NewWestminster\.nc$ - last - 20 - false - false - - - now+24hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, New Westminster, Sea Surface Height, 10min - -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the New Westminster tide gauge station in the lower Fraser River, -near New Westminster, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. - -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, New Westminster, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at New Westminster from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfNewWestminsterSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time + + t02 + t02 + float + + + Mean Period T02 + 50.0 + 0.0 + null + null + null + + + + fp + fp + float + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + Wave Peak Frequency + 15000.0 + 0.0 + null + null + null - - - nav_lon - longitude + + + dir + dir + float + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + Wave Mean Direction + 360.0 + 0.0 + null + null + null - - - nav_lat - latitude + + + dp + dp + float + - latitude - Latitude - 46.0 - 52.0 - modelResult - location + Peak Direction + 360.0 + 0.0 + null + null + null - + - sossheig - ssh + wcc + wcc float + + Whitecap Coverage + 1.0 + 0.0 + null + null + null + + + + wch + wch + float + - null + Significant Breaking Wave Height 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + 0.0 + null + null + null - - - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*PatriciaBay\.nc$ - last - 20 - false - false - - - now+24hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Patricia Bay, Sea Surface Height, 10min - -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Patricia Bay tide gauge station in Saanich Inlet, -near the Institute of Ocean Sciences and Victoria International Airport, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. - -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Patricia Bay, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Patricia Bay from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfPatriciaBaySSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time + + utwo + utwo + float + + + Eastward Wave to Ocean Stress + 40000.0 + -40000.0 + null + null + null + + + + vtwo + vtwo + float + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + Northward Wave to Ocean Stress + 40000.0 + -40000.0 + null + null + null - - - nav_lon - longitude + + + foc + foc + float + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + Wave to Ocean Energy Flux + 12000.0 + 0.0 + null + null + null - - - nav_lat - latitude + + + uuss + uuss + float + - latitude - Latitude - 46.0 - 52.0 - modelResult - location + Eastward Surface Stokes Drift + 15000.0 + -15000.0 + null + null + null - + - sossheig - ssh + vuss + vuss float - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + Northward Surface Stokes Drift + 15000.0 + -15000.0 + null + null + null - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*PointAtkinson\.nc$ - last - 20 - false - false + + /opp/wwatch3/ + /opp/wwatch3/(|nowcast/.*|most_recent_forecast/) + .*SoG_ww3_.*\.nc$ + true + 10080 + now+24hours Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Point Atkinson, Sea Surface Height, 10min + Files, WAVEWATCH III®, Strait of Georgia, V17-02 + Files, WAVEWATCH III®, Strait of Georgia, V17-02 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Point Atkinson tide gauge station on the north side of English Bay, -near Vancouver, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +2d wave field values from the Strait of Georgia WaveWatch III® model runs. +The values are calculated for a model grid that covers the Strait of Georgia +on the coast of British Columbia. The time values are UTC. -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +The Strait of Georgia WaveWatch III® model grid and configuration were developed +by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model +is forced with currents from the SalishSeaCast NEMO model and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Point Atkinson, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca +v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + SalishSeaCast Project Contributors + gemmrish@uvic.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Point Atkinson from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfPointAtkinsonSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null + Fisheries & Oceans CanadaCast, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada null - null - - time_counter - time + + url + url + String + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult - - - nav_lon - longitude + + + name + name + String + - longitude - Longitude - -127.0 - -121.0 - modelResult - location - - - nav_lat - latitude + + + lastModified + lastModified + double + - latitude - Latitude - 46.0 - 52.0 - modelResult - location - + - sossheig - ssh - float + size + size + double + Other + Size + bytes + - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*PortRenfrew\.nc$ - last - 20 - false - false + + /opp/fvcom/nowcast/ + .* + .*vhfr_low_v2_[0s].*\.nc$ + true + 10080 + now+24hours Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Port Renfrew, Sea Surface Height, 10min + Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 + Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Port Renfrew tide gauge station on the north side of the western end of the Juan de Fuca Strait, -near Port Renfrew, British Columbia. +Barotropic sea surface height, and currents from VHFR low resolution V2 configuration +FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the SalishSeaCast NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Port Renfrew, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca +V2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Port Renfrew from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfPortRenfrewSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada null - null - - time_counter - time + + url + url + String + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult - - - nav_lon - longitude + + + name + name + String + - longitude - Longitude - -127.0 - -121.0 - modelResult - location - - - nav_lat - latitude + + + lastModified + lastModified + double + - latitude - Latitude - 46.0 - 52.0 - modelResult - location - + - sossheig - ssh - float + size + size + double + Other + Size + bytes + - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*SandHeads\.nc$ - last - 20 - false - false + + /opp/fvcom/ + /opp/fvcom/(|nowcast-x2/.*|most_recent_forecast/) + .*vh_x2_[0s].*\.nc$ + true + 10080 - - now+24hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + + + now+24hours + Grid + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Sand Heads, Sea Surface Height, 10min + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Sand Heads tide gauge station near the mouth of the main arm of the Fraser River, -near Steveston, British Columbia. +Baroclinic sea surface height, currents, temperature, and salinity from +VHFR X2 configuration FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. +From 2019-02-06 onward the model runs include Fraser River discharge forcing based on +daily average discharges from river gauge at Hope with a 1 day lag. +The river temperature is climatological. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Sand Heads, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca +X2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Sand Heads from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfSandHeadsSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada null - null - - time_counter - time + + url + url + String + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult - - - nav_lon - longitude + + + name + name + String + - longitude - Longitude - -127.0 - -121.0 - modelResult - location - - - nav_lat - latitude + + + lastModified + lastModified + double + - latitude - Latitude - 46.0 - 52.0 - modelResult - location - + - sossheig - ssh - float + size + size + double + Other + Size + bytes + - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*SandyCove\.nc$ - last - 20 - false - false + + /opp/fvcom/nowcast-r12/ + .* + .*vh_r12_[0s].*\.nc$ + true + 10080 + now+24hours Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Sandy Cove, Sea Surface Height, 10min + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Sandy Cove tide gauge station on the north side of English Bay, -near Vancouver, British Columbia. +Baroclinic sea surface height, currents, temperature, and salinity from +VHFR R12 configuration FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. +The model runs include Fraser River discharge forcing based on +daily average discharges from river gauge at Hope with a 1 day lag. +The river temperature is climatological. The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Sandy Cove, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca +R12: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Sandy Cove from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfSandyCoveSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada null - null - - - time_counter - time - - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + + + url + url + String + + - - - nav_lon - longitude + + + name + name + String + - longitude - Longitude - -127.0 - -121.0 - modelResult - location - - - nav_lat - latitude + + + lastModified + lastModified + double + - latitude - Latitude - 46.0 - 52.0 - modelResult - location - + - sossheig - ssh - float + size + size + double + Other + Size + bytes + - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*Squamish\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/observations/ONC/CTD/SCVIP/ + false + .*SCVIP_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + - now+24hours - Grid + now-2days + TimeSeries + depth, longitude, latitude CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=SCVIP&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Central Node VENUS Instrument Platform, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SCVIP, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Squamish, Sea Surface Height, 10min +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Squamish tide gauge station at the head of Howe Sound, -near Squamish, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. +Temperature and salinity data from the Ocean Networks Canada (ONC) +Strait of Georgia Central Node VENUS Instrument Platform CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. - Forecast, Squamish, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Squamish from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfSquamishSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - time_counter + + time time + long + - T + null + Time time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + timeseries_id - - - nav_lon - longitude + + + temperature_sample_count + temperature_sample_count + long + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + null + Temperature Sample Count + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation - - - nav_lat - latitude + + + salinity + salinity + double + - latitude - Latitude - 46.0 - 52.0 - modelResult - location + null + Reference Salinity + 34.0 + 0.0 - + - sossheig - ssh - float + salinity_sample_count + salinity_sample_count + long null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + Reference Salinity Sample Count - - - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*Victoria\.nc$ - last - 20 - false - false - - - now+24hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Victoria, Sea Surface Height, 10min - -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Victoria tide gauge station in Esquimalt Harbour, -near Victoria, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. - -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Victoria, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted sea surface height time series at Victoria from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfVictoriaSSH10m. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time + + temperature + temperature + double + - T - time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + null + Temperature + 20.0 + 4.0 - - - nav_lon - longitude + + + temperature_std_dev + temperature_std_dev + double + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + null + Temperature Standard Deviation - - - nav_lat - latitude + + + depth + depth + long + - latitude - Latitude - 46.0 - 52.0 - modelResult - location + 450.0 + 0.0 + OceanDepth + Depth + depth + m - + - sossheig - ssh - float + longitude + longitude + double + + + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + latitude + latitude + double - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + 90.0 + -90.0 + Latitude + latitude + degrees_north - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - true - .*WoodwardsLanding\.nc$ - last - 20 - false - false + + 10080 + 10000 + /results/observations/ONC/CTD/SEVIP/ + false + .*SEVIP_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + - now+24hours - Grid + now-2days + TimeSeries + depth, longitude, latitude CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=SEVIP&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, -Oceans > Sea Surface Topography > Sea Surface Height, -sea, sea_surface_height_above_geoid, -sossheig, ssh, surface, tides, time_counter, topography + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC East Node VENUS Instrument Platform, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SEVIP, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Woodwards Landing, Sea Surface Height, 10min - -Rolling daily forecast of sea surface height values averaged over 10 minute intervals from -Salish Sea NEMO model runs with physics and biology. The values are calculated at the model grid point -closest to the Woodwards Landing tide gauge station in lower Fraser River, -on the south side of Richmond, British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:55:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. - -v17-02: sea surface height variable; - NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. -see infoUrl link for full details. - Forecast, Woodwards Landing, Sea Surface Height, 10min - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. -Forecasted sea surface height time series at Woodwards Landing from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfWoodwardsLandingSSH10m. +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Citations: +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 +Temperature and salinity data from the Ocean Networks Canada (ONC) +Strait of Georgia East Node VENUS Instrument Platform CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + - - time_counter + + time time + long + - T + null + Time time - Time axis - gregorian - seconds since 1900-01-01 00:00:00 - 1900-01-01 00:00:00 - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z - time - modelResult + timeseries_id + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Temperature Standard Deviation + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + + + + salinity_sample_count + salinity_sample_count + long + + + null + Reference Salinity Sample Count - - - nav_lon - longitude + + + temperature_sample_count + temperature_sample_count + long + - longitude - Longitude - -127.0 - -121.0 - modelResult - location + null + Temperature Sample Count - - - nav_lat + + + latitude latitude + double + - latitude + 90.0 + -90.0 Latitude - 46.0 - 52.0 - modelResult - location + latitude + degrees_north - + - sossheig - ssh - float + longitude + longitude + double - null - 4.0 - -4.0 - null - modelResult - null - null - null - null - null - sea_level + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + depth + depth + long + + + 450.0 + 0.0 + OceanDepth + Depth + depth + m - + 10080 10000 - /results/SalishSea/rolling-forecasts/nemo/ - .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ - true - .* + /results/observations/ONC/CTD/LSBBL/ + false + .*LSBBL_CTD_15m_\d{8}\.nc$ last - 20 + + + + + time + time false false + - now+24hours - Grid + now-2days + TimeSeries + depth, longitude, latitude CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=LSBBL&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthu, u grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Fraser River Delta Lower Slope Node Bottom Boundary Layer Station, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, LSBBL, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Forecasted 3d zonal (u) component velocity field values averaged over 1 hour intervals -from the most recent Salish Sea NEMO model forecast run. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:30:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. +Temperature and salinity data from the Ocean Networks Canada (ONC) +Fraser River Delta Lower Slope Bottom Boundary Layer Node CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: uVelocity variable -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. - Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted 3d zonal (u) component velocity fields from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSf3DuGridFields1h. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - null - - time_counter + + time time + long - - null - null - time_counter - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time - - - - depthu - depth - - null - null - depthu - depth - modelResult + null + Time + time + timeseries_id - - - y - gridY + + + salinity + salinity + double - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Reference Salinity + 34.0 + 0.0 - - - x - gridX + + + temperature + temperature + double - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Temperature + 20.0 + 4.0 - + - vozocrtx - uVelocity - float + temperature_std_dev + temperature_std_dev + double - null - 8.0 - -8.0 - null - modelResult - null - null - null - null - null - currents + null + Temperature Standard Deviation - - - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ - true - .* - last - 20 - false - false - - - now+24hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, depthv, v grid, ocean, oceans, -Oceans > Ocean Circulation > Ocean Currents, -sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty - GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly - -Forecasted 3d meridional (v) component velocity field values averaged over 1 hour intervals -from the most recent Salish Sea NEMO model forecast run. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:30:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. - -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: vVelocity variable -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Forecasted 3d meridional (v) component velocity fields from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSf3DvGridFields1h. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - null - - - time_counter - time + + salinity_std_dev + salinity_std_dev + double - null - null - time_counter - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time + null + Reference Salinity Standard Deviation - - - depthv - depth + + + salinity_sample_count + salinity_sample_count + long - null - null - depthv - depth - modelResult + null + Reference Salinity Sample Count - - - y - gridY + + + temperature_sample_count + temperature_sample_count + long + + + null + Temperature Sample Count + + + + latitude + latitude + double - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + 90.0 + -90.0 + Latitude + latitude + degrees_north - - - x - gridX + + + longitude + longitude + double - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + 180.0 + -180.0 + Longitude + longitude + degrees_east - + - vomecrty - vVelocity - float + depth + depth + long - null - 8.0 - -8.0 - null - modelResult - null - null - null - null - null - currents + 450.0 + 0.0 + OceanDepth + Depth + depth + m - - 10080 - 10000 - /results/SalishSea/rolling-forecasts/nemo/ - .*CHS_currents\.nc$ - true - .* - last - 20 - false - false - - - now+24hours - Grid - COARDS, CF-1.6, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - circulation, current, currents, east, eastward, -eastward_sea_water_velocity_upper_10_grid_levels, -eastward_sea_water_velocity_upper_5_grid_levels, -north, northward, northward_sea_water_velocity_upper_10_grid_levels, -northward_sea_water_velocity_upper_5_grid_levels, -ocean, oceans, Oceans > Ocean Circulation > Ocean Currents, sea, seawater, time, -VelEast10, VelEast5, VelNorth10, VelNorth5, velocity, water - The SalishSeaCast model results are copyright - by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - - They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Forecast, Salish Sea, Near-surface Depth Averaged Currents, 1h -Rolling daily forecast of eastward and northward water current component field values averaged over 1 hour intervals for the upper 5 and 10 metres of depth from Salish Sea NEMO model runs with physics and biology. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, -the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centres of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -The velocity component values are averaged over the upper 5 and 10 metre depths. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -This dataset is updated daily to move it forward 1 day in time. -It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, -and extends to 11:30:00 UTC on the 2nd day after the forecast run date. -So, for example, after completion of the 10-Nov-2017 forecast run, -this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. - -v17-02: VelEast10, VelEast5, VelNorth10, VelNorth5 variables; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetry2V17-02 bathymetry; - see infoUrl link for full details. + + 10080 + 10000 + /results/observations/ONC/CTD/USDDL/ + false + .*USDDL_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + depth, longitude, latitude + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=USDDL&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Fraser River Delta Upper Slope Node Delta Dynamics Laboratory Station, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, USDDL, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. -Forecasted near-surface depth averaged water current component fields from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSfDepthAvgdCurrents1h. +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Citations: +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Fraser River Delta Upper Sloper DDL Node, Salinity and Temperature, 15min, v1 -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 +Temperature and salinity data from the Ocean Networks Canada (ONC) +Fraser River Delta Upper Slope Delta Dynamics Laboratory Node CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Fraser River Delta Upper Slope DDL Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 - - time_counter - time - - - null - minutes since 1970-01-01T00:00:00Z - modelResult - UTC - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time - - - - gridY - gridY - - - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location - - - - gridX - gridX - - - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location - - - - VelEast10 - VelEast10 - float - - - null - 8.0 - -8.0 - Currents - - - - VelNorth10 - VelNorth10 - float - - - null - 8.0 - -8.0 - Currents - - - - VelNorth5 - VelNorth5 - float - - - null - 8.0 - -8.0 - Currents - - - - VelEast5 - VelEast5 - float - - - null - 8.0 - -8.0 - Currents - - + + 450.0 + 0.0 + OceanDepth + Depth + depth + m + + - - 10080 + + 10800 10000 - /results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_ptrc_T\.nc$ + /results/observations/ONC/ferries/TWDP/ + false + .*TWDP_TSG_O2_TURBCHLFL_CO2_METEO_1m_\d{8}.nc$ last - 20 + + + + + time + time false false + - now-16hours - Grid + now-2days + TimeSeries + longitude, latitude, on_crossing_mask, crossing_number CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + https://salishsea.eos.ubc.ca/ UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, -Biological Classification > Protists > Diatoms, -biosphere, -Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, -chemistry, ciliates, concentration, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, -flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, -mole_concentration_of_ammonium_in_sea_water, -mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, -mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, -Oceans > Ocean Chemistry > Ammonia, -Oceans > Ocean Chemistry > Nitrate, -Oceans > Ocean Chemistry > Nitrogen, -Oceans > Ocean Chemistry > Organic Matter, -Oceans > Ocean Chemistry > Silicate, -organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, -silicate, silicon, time_counter, tracer, water, zooplankton - + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 1min aggregation, ONC Mobile Platforms, British Columbia Ferries, +Tsawwassen - Duke Point route, Ocean Networks Canada, +UBC EOAS, Strait of Georgia, latitude, longitude, ocean, observations, +Atmosphere > Atmospheric Pressure > Surface Pressure, +Atmosphere > Atmospheric Radiation > Longwave Radiation, +Atmosphere > Atmospheric Radiation > Shortwave Radiation, +Atmosphere > Atmospheric Temperature > Air Temperature, +Atmosphere > Atmospheric Temperature > Surface Air Temperature, +Atmosphere > Atmospheric Water Vapor > Humidity, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +Oceans &gt; Salinity/Density &gt; Conductivity, +Oceans &gt; Ocean Chemistry &gt; Carbon Dioxide, +Oceans &gt; Ocean Chemistry &gt; Oxygen, +air_temperature, air_temperature_sample_count, air_temperature_standard_deviations, air_temperature_std_dev, atmosphere, +barometric_pressure, barometric_pressure_sample_count, barometric_pressure_std_dev, +carbon dioxide, cdom, cdom_fluorescence, cdom_fluorescence_sample_count, cdom_fluorescence_std_dev, +chemistry, chlorophyl, chlorophyll, chlorophyll_sample_count, chlorophyll_std_dev, +CO2, co2_concentration_linearized, co2_concentration_linearized_sample_count, co2_concentration_linearized_std_dev, +co2_partial_pressure, co2_partial_pressure_sample_count, co2_partial_pressure_std_dev, +crossing_number, conductivity, conductivity_sample_count, conductivity_std_dev, +dissolved O2, electrical conductivity, +fluorescence, fractional_saturation_of_oxygen_in_sea_water, fractional_saturation_of_oxygen_in_sea_water_sample_count, +fractional_saturation_of_oxygen_in_sea_water_standard_deviation, +latitude, longitude, +longwave_radiation, longwave_radiation_sample_count, longwave_radiation_std_dev, +mass_concentration_of_chlorophyl_in_sea_water, mass_concentration_of_chlorophyl_in_sea_water_sample_count, +mass_concentration_of_chlorophyl_in_sea_water_standard_deviation, +mass_fraction_of_cdom_fluorescence_in_sea_water, mass_fraction_of_cdom_fluorescence_in_sea_water_sample_count, +mass_fraction_of_cdom_fluorescence_in_sea_water_standard_deviation, +mole_fraction_of_carbon_dioxide_in_sea_water, mole_fraction_of_carbon_dioxide_in_sea_water_sample_count, +mole_fraction_of_carbon_dioxide_in_sea_water_standard_deviation, +O2, O2 sensor temperature, +o2_concentration_corrected, o2_concentration_corrected_sample_count, o2_concentration_corrected_std_dev, +o2_saturation, o2_saturation_sample_count, o2_saturation_std_dev, +ocean, on_crossing_mask, optical properties, organic, oxygen, partial pressure, +reference salinity, salinity, salinity_sample_count, salinity_std_dev, sea water, +relative_humidity, relative_humidity_sample_count, relative_humidity_standard_deviation, relative_humidity_std_dev, +sea water electrical conductivity, sea_water_electrical_conductivity, +sea_water_electrical_conductivity_sample_count, sea_water_electrical_conductivity_standard_deviation, +sea_water_reference_salinity, sea_water_reference_salinity_sample_count, +sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +sea_water_turbidity, sea_water_turbidity_sample_count, sea_water_turbidity_standard_deviation, +solar_radiation, solar_radiation_sample_count, solar_radiation_std_dev, +seawater, +surface_air_pressure, surface_air_pressure_sample_count, surface_air_pressure_standard_deviation, +surface_downwelling_longwave_flux_in_air, surface_downwelling_longwave_flux_in_air_standard_deviation, surface_downwelling_shortwave_flux_in_air, surface_downwelling_shortwave_flux_in_air_sample_count, surface_downwelling_shortwave_flux_in_air_standard_deviation, +surface_partial_pressure_of_carbon_dioxide_in_sea_water, +surface_partial_pressure_of_carbon_dioxide_in_sea_water_sample_count, +surface_partial_pressure_of_carbon_dioxide_in_sea_water_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, +temperature_of_sensor_for_oxygen_in_sea_water, temperature_of_sensor_for_oxygen_in_sea_water_sample_count, +temperature_of_sensor_for_oxygen_in_sea_water_standard_deviation, +time, turbidity, +volume_fraction_of_oxygen_in_sea_water, volume_fraction_of_oxygen_in_sea_water_sample_count, +volume_fraction_of_oxygen_in_sea_water_standard_deviation GCMD Science Keywords - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 - -3d SMELT biological model field values averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v17-02: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), - diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, - nitrate, particulate organic nitrogen, silicon. - Fraser River water turbidity tracer. - NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. -v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -3d SMELT biological model field values from the SalishSeaCast model -(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DBiologyFields1hV19-05. - -Citations: + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 -Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. -Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. -J. Geophys. Res. Oceans, 121(3), 1600–1625. -https://dx.doi.org/10.1002/2015JC011118 +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 +Data from the Ocean Networks Canada (ONC) +Strait of Georgia Mobile Platforms, British Columbia Ferries, Tsawwassen - Duke Point route. +The data are resampled from the raw instrument data to 1 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 1 minute +aggregation intervals. -Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. J. Geophys. Res. Oceans, 125(8). https://doi.org/10.1029/2019JC015766 +v1: on_crossing_mask, crossing_number, + temperature, temperature standard deviation, temperature sample counts, + conductivity, conductivity standard deviation, conductivity sample counts, + reference salinity, reference salinity standard deviation, reference salinity sample counts, + O2 saturation, O2 saturation standard deviation, O2 saturation sample counts, + corrected O2 concentration, corrected O2 concentration standard deviation, corrected O2 concentration sample counts, + O2 sensor temperature, O2 sensor temperature standard deviation, O2 sensor temperature sample counts, + CDOM fluorescence, CDOM fluorescence standard deviation, CDOM fluorescence sample counts, + chlorophyll, chlorophyll standard deviation, chlorophyll sample counts, + turbidity, turbidity standard deviation, turbidity sample counts, + CO2 partial pressure, CO2 partial pressure standard deviation, CO2 partial pressure sample counts, + linearized CO2 concentration, linearized CO2 concentration standard deviation, linearized CO2 concentration sample counts, + variables +v18-01: Add air temperature, air temperature standard deviation, air temperature sample counts, + relative humidity, relative humidity standard deviation, relative humidity sample counts, + barometric pressure, barometric pressure standard deviation, barometric pressure sample counts, + solar radiation, solar radiation standard deviation, solar radiation sample counts, + longwave radiation, longwave radiation standard deviation, longwave radiation sample counts, + variables + ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.org/ + Ocean Networks Canada (ONC) over - null - null - null + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 1 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + - - time_counter + + time time + long null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time + Time + time + timeseries_id - - - deptht - depth + + + longitude + longitude + double + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV + 180.0 + -180.0 + degrees_east + + + + latitude + latitude + double + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV + 90.0 + -90.0 + degrees_north + + + + nemo_grid_j + nemo_grid_j + short null - null - depth - modelResult + NEMO Grid j Index + https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV + count + -999 means a longitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument - - - y - gridY + + + nemo_grid_i + nemo_grid_i + short - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + NEMO Grid i Index + https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV + count + -999 means a latitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument - - - x - gridX + + + on_crossing_mask + on_crossing_mask + byte - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + https://data.oceannetworks.ca/DataSearch?location=TWDP - + - ammonium - ammonium - float + crossing_number + crossing_number + double null - 5.0 + https://data.oceannetworks.ca/DataSearch?location=TWDP + 10.0 0.0 - null - modelResult - null - null - null - null - null - dissolved_nutrients - biogenic_silicon - biogenic_silicon - float + temperature + temperature + double null - null - 0 - 70.0 - modelResult - null - null - null - null - null - dissolved_nutrients + Potential Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 25.0 + 4.0 - ciliates - ciliates - float + temperature_std_dev + temperature_std_dev + double null - null - modelResult - null - null - null - null - null - biology + Potential Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - diatoms - diatoms - float + temperature_sample_count + temperature_sample_count + int null - null - 0 - 20.0 - modelResult - null - null - null - null - null - biology + Potential Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - dissolved_organic_nitrogen - dissolved_organic_nitrogen - float + conductivity + conductivity + double null - null - modelResult - null - null - null - null - null - dissolved_nutrients + Conductivity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 0.0 + 5.0 - flagellates - flagellates - float + conductivity_std_dev + conductivity_std_dev + double null - 128.0 - 0.0 - null - modelResult - null - null - null - null - null - biology + Conductivity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - mesozooplankton - mesozooplankton - float + conductivity_sample_count + conductivity_sample_count + int null - null - modelResult - null - null - null - null - null - biology + Conductivity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - microzooplankton - microzooplankton - float + salinity + salinity + double null - null - modelResult - null - null - null - null - null - biology + Reference Salinity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 34.0 + 0.0 - nitrate - nitrate - float + salinity_std_dev + salinity_std_dev + double null - 40.0 - 0 - null - modelResult - null - null - null - null - null - dissolved_nutrients + Reference Salinity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - particulate_organic_nitrogen - particulate_organic_nitrogen - float + salinity_sample_count + salinity_sample_count + int null - null - modelResult - null - null - null - null - null - dissolved_nutrients + Reference Salinity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG - silicon - silicon - float + o2_saturation + o2_saturation + double null - 70.0 - 0 - null - modelResult - null - null - null - null - null - dissolved_nutrients + O2 Saturation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 180.0 + 0.0 + percent + + + + o2_saturation_std_dev + o2_saturation_std_dev + double + + + null + O2 Saturation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + percent - - - - 10080 - 10000 - /results/SalishSea/month-avg.201905/ - true - .*SalishSea_1m_\d{6}_\d{6}_ptrc_T\.nc$ - last - 20 - false - false - - - now-36days - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, -Biological Classification > Protists > Diatoms, -biosphere, -Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, -chemistry, ciliates, concentration, depth, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, -flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, -mole_concentration_of_ammonium_in_sea_water, -mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, -mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, -mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, -Oceans > Ocean Chemistry > Ammonia, -Oceans > Ocean Chemistry > Nitrate, -Oceans > Ocean Chemistry > Nitrogen, -Oceans > Ocean Chemistry > Organic Matter, -Oceans > Ocean Chemistry > Silicate, -organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, -silicate, silicon, time, time_counter, tracer, water, zooplankton - - GCMD Science Keywords - The SalishSeaCast NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 - -3d SMELT biological model field values averaged over 1 month intervals -from SalishSeaCast NEMO model runs with physics, biology and chemistry. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, -Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v19-05: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), - diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, - nitrate, particulate organic nitrogen, silicon. - Fraser River water turbidity tracer variables. - NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 - SalishSeaCast NEMO Model - SalishSeaCast Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -3d SMELT biological model field values from the SalishSeaCast NEMO model -(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DBiologyFields1hV19-05. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. -Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. -J. Geophys. Res. Oceans, 121(3), 1600–1625. -https://dx.doi.org/10.1002/2015JC011118 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - -Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. J. Geophys. Res. Oceans, 125(8). https://doi.org/10.1029/2019JC015766 - - over - null - null - null - - - time_counter - time + + o2_saturation_sample_count + o2_saturation_sample_count + int null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z - time + O2 Saturation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - - - deptht - depth + + + o2_concentration_corrected + o2_concentration_corrected + double null - null - depth - modelResult + Corrected O2 Concentration + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 1.0 + 0.0 - - - y - gridY + + + o2_concentration_corrected_std_dev + o2_concentration_corrected_std_dev + double - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Corrected O2 Concentration Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - - - x - gridX + + + o2_concentration_corrected_sample_count + o2_concentration_corrected_sample_count + int - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Corrected O2 Concentration Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - + - ammonium - ammonium - float + o2_temperature + o2_temperature + double null - 5.0 + O2 Sensor Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 500.0 0.0 - null - modelResult - null - null - null - null - null - dissolved_nutrients - biogenic_silicon - biogenic_silicon - float + o2_temperature_std_dev + o2_temperature_std_dev + double null - null - 0 - 70.0 - modelResult - null - null - null - null - null - dissolved_nutrients + O2 Sensor Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - ciliates - ciliates - float + o2_temperature_sample_count + o2_temperature_sample_count + int null - null - modelResult - null - null - null - null - null - biology + O2 Sensor Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR - diatoms - diatoms - float + cdom_fluorescence + cdom_fluorescence + double null - null - 0 - 20.0 - modelResult - null - null - null - null - null - biology + CDOM Fluorescence Mass Fraction + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + 1.0 + 0.0 - dissolved_organic_nitrogen - dissolved_organic_nitrogen - float + cdom_fluorescence_std_dev + cdom_fluorescence_std_dev + double null - null - modelResult - null - null - null - null - null - dissolved_nutrients + CDOM Fluorescence Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - flagellates - flagellates - float + cdom_fluorescence_sample_count + cdom_fluorescence_sample_count + int null - 128.0 - 0.0 - null - modelResult - null - null - null - null - null - biology + CDOM Fluorescence Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - mesozooplankton - mesozooplankton - float + chlorophyll + chlorophyll + double null - null - modelResult - null - null - null - null - null - biology + Chlorophyll Concentration + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + 70.0 + 0.0 - microzooplankton - microzooplankton - float - null - null - modelResult - null - null - null - null - null - biology + Chlorophyll Concentration Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - nitrate - nitrate - float + chlorophyll_sample_count + chlorophyll_sample_count + int null - 40.0 - 0 - null - modelResult - null - null - null - null - null - dissolved_nutrients + Chlorophyll Concentration Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - particulate_organic_nitrogen - particulate_organic_nitrogen - float + turbidity + turbidity + double null - null - modelResult - null - null - null - null - null - dissolved_nutrients + Turbidity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - silicon - silicon - float + turbidity_std_dev + turbidity_std_dev + double null - 70.0 - 0 - null - modelResult - null - null - null - null - null - dissolved_nutrients + Turbidity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL - - - - 10080 - 10000 - /results2/SalishSea/nowcast-green.201905/ - true - .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ - last - 20 - false - false - - - now-16hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - deptht, grid, ocean, oceans, -Oceans > Ocean Temperature > Conservative Temperature, -Oceans > Salinity, -reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, -conservative temperature, time_counter, vosaline, votemper, water - The Salish Sea MEOPAR NEMO model results are copyright -by the Salish Sea MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 - -3d salinity and water temperature field values averaged over 1 hour intervals -from Salish Sea NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid -that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, -and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v1: salinity (practical) and temperature variables -v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. - Changed salinity variable to reference salinity. - Changed temperature variable to conservative temperature. - Added squared buoyancy frequency variable. -v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. -v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - Removed squared buoyancy frequency variable. -v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. -v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Temperature and salinity fields from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DTracerFields1hV19-05. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time + + turbidity_sample_count + turbidity_sample_count + int - null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time - - - - deptht - depth + null + Turbidity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + co2_partial_pressure + co2_partial_pressure + double null - null - depth - modelResult + CO2 Partial Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - - - y - gridY + + + co2_partial_pressure_std_dev + co2_partial_pressure_std_dev + double - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + CO2 Partial Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - - - x - gridX + + + co2_partial_pressure_sample_count + co2_partial_pressure_sample_count + int - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + CO2 Partial Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - + - vosaline - salinity - float + co2_concentration_linearized + co2_concentration_linearized + double null - 34.0 + CO2 Partial Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + 1.0 0.0 - null - modelResult - null - null - null - null - null - salinity - votemper - temperature - float + co2_concentration_linearized_std_dev + co2_concentration_linearized_std_dev + double null - 20.0 - 4.0 - null - modelResult - null - null - null - null - null - temperature + CO2 Partial Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - - - - 10080 - 10000 - /results/SalishSea/month-avg.201905/ - true - .*SalishSea_1m_\d{6}_\d{6}_grid_T\.nc$ - last - 20 - false - false - - - now-36days - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - depth, deptht, grid, ocean, oceans, -Oceans > Ocean Temperature > Conservative Temperature, -Oceans > Salinity, -reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, -conservative temperature, time, time_counter, vosaline, votemper, water - The SalishSeaCast NEMO model results are copyright -by the SalishSeaCast Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 - -3d salinity and water temperature field values averaged over 1 month intervals -from SalishSeaCast NEMO model runs with physics, biology and chemistry. -The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, -Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. -Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v19-05: reference salinity, and conservative temperature variables. - NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; - see infoUrl link for full details. - - Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 - SalishSeaCast NEMO Model - SalishSeaCast Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Temperature and salinity fields from the SalishSeaCast NEMO model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DTracerFields1moV19-05. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - - - time_counter - time + + co2_concentration_linearized_sample_count + co2_concentration_linearized_sample_count + int null - null - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z - time + CO2 Partial Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR - - - deptht - depth + + + air_temperature + air_temperature + double + 480 + NaN + 60 + seconds + mean + meteorology + air temperature + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + TWDP + air_temperature + degrees_Celcius + null - null - depth - modelResult + Air Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 40.0 + -10.0 + Meteorology - - - y - gridY + + + air_temperature_std_dev + air_temperature_std_dev + double + 480 + NaN + 60 + seconds + mean + meteorology + air temperature standard deviation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + TWDP + air_temperature_standard_deviations + degrees_Celcius + - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Air Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 50.0 + 0.0 + Meteorology - - - x - gridX + + + air_temperature_sample_count + air_temperature_sample_count + int + 720 + 0 + 60 + seconds + mean + meteorology + air temperature sample count + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + TWDP + air_temperature_sample_count + - X - modelResult - gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Air Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 + 0.0 + Meteorology - + - vosaline - salinity - float + relative_humidity + relative_humidity + double + 480 + NaN + 60 + seconds + mean + meteorology + relative humidity + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + TWDP + relative_humidity + % + - null - 34.0 + null + Relative Humidity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 0.0 - null - modelResult - null - null - null - null - null - salinity + Meteorology + percent - votemper - temperature - float + relative_humidity_std_dev + relative_humidity_std_dev + double + 480 + NaN + 60 + seconds + mean + meteorology + relative humidity standard deviation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + TWDP + relative_humidity_standard_deviation + % + - null - 20.0 - 4.0 - null - modelResult - null - null - null - null - null - temperature + null + Relative Humidity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 5.0 + 0.0 + Meteorology + percent - - - - 10080 - 10000 - /results2/SalishSea/nowcast-green.201905/ - .*SalishSea_1h_\d{8}_\d{8}_carp_T\.nc$ - true - .* - last - 20 - false - false - - - now-16hours - Grid - CF-1.6, COARDS, ACDD-1.3 - https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results - UBC EOAS - Earth, Ocean & Atmospheric Sciences, University of British Columbia - auxilary, cell_thickness, density, deptht, -downwelling_photosynthetic_photon_radiance_in_sea_water, e3t, -Oceans > Ocean Chemistry > Inorganic Matter, -Oceans > Ocean Optics > Photosynthetically Active Radiation, -Oceans > Ocean Optics > Radiance, -Oceans > Salinity/Density > Density, -Oceans > Marine Sediments > Suspended Solids, -Fraser_tracer, Fraser River, fraser_river_turbidity_tracer, ocean, oceans, optics, -PAR, photon, photosynthetic, photosynthetically, radiance, radiation, river, -sea, sea_water_sigma_theta, seawater, sediment, sediments, sigma, sigma0, sigma_theta, solids, suspended, -t-cell, thickness, time_counter, tracer, turbidity, water - - GCMD Science Keywords - The SalishSeaCast MEOPAR NEMO model results are copyright -by the SalishSeaCast MEOPAR Project Contributors and The University of British Columbia. - -They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 - CF Standard Name Table v29 - Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 - -3d auxiliary model field values averaged over 1 hour intervals -from SalishSeaCast NEMO model runs with physics, biology, and chemistry. -The values are calculated for the entire model grid that includes Juan de Fuca Strait, -he Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of -Washington State and British Columbia. -The time values are UTC. -They are the centre of the intervals over which the calculated model results are averaged; -e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. -Geo-location and depth data for the Salish Sea NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. - -v19-05: Photosynthetically available radiation (PAR), Potential density anomaly (sigma_theta), - Time-varying z-layer thickness (NEMO e3t), Fraser River water turbidity. - NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. - - Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 - Salish Sea MEOPAR NEMO Model - Salish Sea MEOPAR Project Contributors - sallen@eoas.ubc.ca - https://salishsea-meopar-docs.readthedocs.io/ - MEOPAR, ONC, Compute Canada - If you use this dataset in your research, -please reference it with wording similar to the example below, -and include citations of the publications below. -Inclusion of the date(s) when you downloaded the dataset, -and the dataset id help to ensure reproducibility of your work. - -Reference wording: - -Potential density anomaly (sigma_theta) field from the SalishSeaCast model -(Soontiens et al, 2016; Soontiens and Allen, 2017) -were downloaded from their ERDDAP server -(https://salishsea.eos.ubc.ca/erddap/) -on DATE from dataset ubcSSg3DAuxiliaryFields1hV19-05. - -Citations: - -Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. -Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. -https://dx.doi.org/10.1080/07055900.2015.1108899 - -Soontiens, N. and Allen, S., 2017. -Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. -https://dx.doi.org/10.1016/j.ocemod.2017.02.008 - over - null - null - null - null - - - time_counter - time + + null + Relative Humidity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 + 0.0 + Meteorology + + + + barometric_pressure + barometric_pressure + double + + + null + Barometric Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 1050.0 + 950.0 + Pressure + + + + barometric_pressure_std_dev + barometric_pressure_std_dev + double + + + null + Barometric Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 50.0 + 0.0 + Pressure + + + + barometric_pressure_sample_count + barometric_pressure_sample_count + int + + + null + Barometric Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 100.0 + 0.0 + Pressure + + + + solar_radiation + solar_radiation + double + 480 + NaN + 60 + seconds + mean + Meteorology + solar radiation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + TWDP + surface_downwelling_shortwave_flux_in_air + W/m^2 + null - null - time_counter - seconds since 1900-01-01T00:00:00Z - modelResult - time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z - time + Solar Radiation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 500.0 + -500.0 - - - deptht - depth + + + solar_radiation_std_dev + solar_radiation_std_dev + double + 480 + NaN + 60 + seconds + mean + Meteorology + solar radiation standard deviation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + TWDP + surface_downwelling_shortwave_flux_in_air_standard_deviation + W/m^2 + null - null - deptht - depth - modelResult + Solar Radiation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 50.0 + 0.0 - - - y - gridY + + + solar_radiation_sample_count + solar_radiation_sample_count + int + 720 + 0 + 60 + seconds + mean + Meteorology + solar radiation sample count + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + TWDP + surface_downwelling_shortwave_flux_in_air_sample_count + - Y - modelResult - gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. - location + null + Solar Radiation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 100.0 + 0.0 - - - x - gridX + + + longwave_radiation + longwave_radiation + double + 480 + NaN + 60 + seconds + mean + Meteorology + longwave radiation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + TWDP + surface_downwelling_longwave_flux_in_air + W/m^2 + - X - modelResult - location + null + Longwave Radiation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 500.0 + -500.0 - + - PAR - PAR - float + longwave_radiation_std_dev + longwave_radiation_std_dev + double + 480 + NaN + 60 + seconds + mean + Meteorology + longwave radiation standard deviation + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + TWDP + surface_downwelling_longwave_flux_in_air_standard_deviation + W/m^2 + - photosynthetically available radiation null - 350.0 + Longwave Radiation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 50.0 0.0 - null - downwelling_photosynthetic_radiative_flux_in_sea_water - modelResult - null - null - null - null - null - optical_properties - sigma_theta - sigma_theta - float + longwave_radiation_sample_count + longwave_radiation_sample_count + int + 720 + 0 + 60 + seconds + mean + Meteorology + longwave radiation sample count + http://dmas.uvic.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + TWDP + surface_downwelling_longwave_flux_in_air_sample_count + - potential density anomaly null - 26.0 + Longwave Radiation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 100.0 0.0 - null - modelResult - null - null - null - null - null - physical_oceanography + + + + 10080 + 10000 + /opp/observations/AISDATA/netcdf/ + .*VFPA_2ND_NARROWS_HADCP_2s_\d{6}\.nc$ + true + .* + last + + + + + time + time + false + false + + + + now-2days + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans Canada, +Vancouver Fraser Port Authority (VFPA) + https://salishsea.eos.ubc.ca/ + UCB EOAS, DFO IOS & VFPA + Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada - Institute of Ocean Sciences, + Vancouver Fraser Port Authority + ADCP, 2nd Narrows Rail Bridge, circulation, current, currents, direction, +Earth Science > Oceans > Ocean Circulation > Ocean Currents, +UBC EOAS, DFO IOS, Vancouver Harbour, latitude, longitude, ocean, oceans, sea, sea_water_direction, sea_water_speed, seawater, +speed, time, Vancouver Fraser Port Authority, velocity + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by the Vancouver Fraser Port Authority. + VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 + VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 + +Current data from Vancouver Fraser Port Authority (VFPA) horizontal acoustic doppler current profiler (HADCP) instrument located at the 2nd Narrows Rail Bridge. The time values are UTC. + +v1: current speed and direction variables + (local files) + CF Standard Name Table v29 + over + null + - e3t - e3t - float + time + time + double + 512 + NaN + proleptic_gregorian + time values are UTC + seconds since 1970-01-01T00:00:00+00:00 + - time-varying z-layer thickness null - null - 0.0 - 30.0 - modelResult - null - null - null - null - null - numerics + Time + time + seconds since 1970-01-01T00:00:00Z + timeseries_id - Fraser_tracer - fraserTurbidity - float + speed + speed + double + 1428 + -9999 + latitude longitude + currents + Current Speed + speed + 0.1 + sea_water_speed + m/s + - Fraser River turbidity null + 5.0 + 0.0 null + Currents + + + + direction + direction + double + + + null + 360.0 0.0 - 30.0 - modelResult - null - null - null - null - null - optical_properties + null + Currents + + + + longitude + longitude + double + + + Location + + + + latitude + latitude + double + + + Location diff --git a/datasets.yaml b/datasets.yaml new file mode 100644 index 0000000..aa7d8da --- /dev/null +++ b/datasets.yaml @@ -0,0 +1,79 @@ +# Directory tree containing dataset XMl fragments +datasets tree: datasets/ + +# Prefix and postfix fragments for datasets.xml +prefix: prefix.xml +postfix: postfix.xml + +# Dataset descriptions: +datasets: + # Bathymetry and NEMO mesh mask + - nemo-grid/ubcSSnBathymetryV17-02.xml + - nemo-grid/ubcSSn2DMeshMaskV17-02.xml + - nemo-grid/ubcSSn3DMeshMaskV17-02.xml + + # Atmospheric forcing + - atmospheric/ubcSSaAtmosphereGridV1.xml + - atmospheric/ubcSSaSurfaceAtmosphereFieldsV1.xml + + # SalishSeaCast NEMO v2017-02 results + # season-averaged fields + - ssc-nemo-201702/ubcSSg2DTracerFieldsSeasonalV17-02.xml + + # SalishSeaCast NEMO v2019-05 results + # hour-averaged fields + - ssc-nemo-201905/ubcSSg3DuGridFields1hV19-05.xml + - ssc-nemo-201905/ubcSSg3DvGridFields1hV19-05.xml + - ssc-nemo-201905/ubcSSg3DwGridFields1hV19-05.xml + - ssc-nemo-201905/ubcSSgSurfaceTracerFields1hV19-05.xml + - ssc-nemo-201905/ubcSSg3DBiologyFields1hV19-05.xml + - ssc-nemo-201905/ubcSSg3DTracerFields1hV19-05.xml + - ssc-nemo-201905/ubcSSg3DAuxiliaryFields1hV19-05.xml + # month-averaged fields + - ssc-nemo-201905/month-average/ubcSSg3DuGridFields1moV19-05.xml + - ssc-nemo-201905/month-average/ubcSSg3DvGridFields1moV19-05.xml + - ssc-nemo-201905/month-average/ubcSSg3DwGridFields1moV19-05.xml + - ssc-nemo-201905/month-average/ubcSSg3DBiologyFields1moV19-05.xml + - ssc-nemo-201905/month-average/ubcSSg3DTracerFields1moV19-05.xml + + # SalishSeaCast NEMO non-versioned results + # rolling forecasts for fields and tide gauge station water levels + - rolling-forecasts/ubcSSf3DuGridFields1h.xml + - rolling-forecasts/ubcSSf3DvGridFields1h.xml + - rolling-forecasts/ubcSSfSurfaceTracerFields1h.xml + - rolling-forecasts/ubcSSfDepthAvgdCurrents1h.xml + - rolling-forecasts/ubcSSfBoundaryBaySSH10m.xml + - rolling-forecasts/ubcSSfCampbellRiverSSH10m.xml + - rolling-forecasts/ubcSSfCherryPointSSH10m.xml + - rolling-forecasts/ubcSSfFridayHarborSSH10m.xml + - rolling-forecasts/ubcSSfHalfmoonBaySSH10m.xml + - rolling-forecasts/ubcSSfNanaimoSSH10m.xml + - rolling-forecasts/ubcSSfNeahBaySSH10m.xml + - rolling-forecasts/ubcSSfNewWestminsterSSH10m.xml + - rolling-forecasts/ubcSSfPatriciaBaySSH10m.xml + - rolling-forecasts/ubcSSfPointAtkinsonSSH10m.xml + - rolling-forecasts/ubcSSfPortRenfrewSSH10m.xml + - rolling-forecasts/ubcSSfSandHeadsSSH10m.xml + - rolling-forecasts/ubcSSfSandyCoveSSH10m.xml + - rolling-forecasts/ubcSSfSquamishSSH10m.xml + - rolling-forecasts/ubcSSfVictoriaSSH10m.xml + - rolling-forecasts/ubcSSfWoodwardsLandingSSH10m.xml + + # WaveWatch III results + - wwatch3/ubcSSf2DWaveFields30mV17-02.xml + - wwatch3/ubcSSWaveWatch3-SoGFilesV17-02.xml + + # FVCOM Vancouver Harbour and Lower Fraser River (VHFR) results + - fvcom-vhfr/ubcSSFVCOM-VHFRLowFilesV2.xml + - fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicX2.xml + - fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicR12.xml + + # ONC observations + - onc-observations/ubcONCSCVIPCTD15mV1.xml + - onc-observations/ubcONCSEVIPCTD15mV1.xml + - onc-observations/ubcONCLSBBLCTD15mV1.xml + - onc-observations/ubcONCUSDDLCTD15mV1.xml + - onc-observations/ubcONCTWDP1mV18-01.xml + + # 2nd Narrows Rail Bridge HADCP observations + - 2ndNarrowsHADCP-observations/ubcVFPA2ndNarrowsCurrent2sV1.xml diff --git a/datasets/2ndNarrowsHADCP-observations/ubcVFPA2ndNarrowsCurrent2sV1.xml b/datasets/2ndNarrowsHADCP-observations/ubcVFPA2ndNarrowsCurrent2sV1.xml new file mode 100644 index 0000000..619debe --- /dev/null +++ b/datasets/2ndNarrowsHADCP-observations/ubcVFPA2ndNarrowsCurrent2sV1.xml @@ -0,0 +1,163 @@ + + 10080 + 10000 + /opp/observations/AISDATA/netcdf/ + .*VFPA_2ND_NARROWS_HADCP_2s_\d{6}\.nc$ + true + .* + last + + + + + time + time + false + false + + + + now-2days + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans Canada, +Vancouver Fraser Port Authority (VFPA) + https://salishsea.eos.ubc.ca/ + UCB EOAS, DFO IOS & VFPA + Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada - Institute of Ocean Sciences, + Vancouver Fraser Port Authority + ADCP, 2nd Narrows Rail Bridge, circulation, current, currents, direction, +Earth Science > Oceans > Ocean Circulation > Ocean Currents, +UBC EOAS, DFO IOS, Vancouver Harbour, latitude, longitude, ocean, oceans, sea, sea_water_direction, sea_water_speed, seawater, +speed, time, Vancouver Fraser Port Authority, velocity + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by the Vancouver Fraser Port Authority. + VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 + VFPA, Vancouver Harbour, 2nd Narrows Rail Bridge, Current, 2sec, v1 + +Current data from Vancouver Fraser Port Authority (VFPA) horizontal acoustic doppler current profiler (HADCP) instrument located at the 2nd Narrows Rail Bridge. The time values are UTC. + +v1: current speed and direction variables + (local files) + CF Standard Name Table v29 + over + null + + + time + time + double + + + null + Time + time + seconds since 1970-01-01T00:00:00Z + timeseries_id + + + + speed + speed + double + + + null + 5.0 + 0.0 + null + Currents + + + + direction + direction + double + + + null + 360.0 + 0.0 + null + Currents + + + + longitude + longitude + double + + + Location + + + + latitude + latitude + double + + + Location + + + diff --git a/datasets/atmospheric/ubcSSaAtmosphereGridV1.xml b/datasets/atmospheric/ubcSSaAtmosphereGridV1.xml new file mode 100644 index 0000000..68abaae --- /dev/null +++ b/datasets/atmospheric/ubcSSaAtmosphereGridV1.xml @@ -0,0 +1,115 @@ + + 10080 + 10000 + /results/forcing/atmospheric/GEM2.5/operational/ + false + ops_y2016m03d07\.nc$ + last + 20 + false + false + + + Grid + modelResult + CF-1.6, COARDS, ACDD-1.3 + null + [Mon Mar 7 10:07:34 2016] ncks -4 -L4 -O /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc /results/forcing/atmospheric/GEM2.5/operational/ops_y2016m03d07.nc + [Mon Mar 7 10:07:00 2016] created by wgrib2 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + atmosphere, model results, HRDPS, latitude, longitude, polar-stereographic grid, Salish Sea + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +This dataset is derived from a product of the Environment and Climate Change Canada HRDPS +(High Resolution Deterministic Prediction System) model. +The Terms and conditions of use of Meteorological Data from Environment and Climate Change Canada +are available at http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt. + CF Standard Name Table v29 + HRDPS, SalishSeaCast, Atmospheric Forcing Grid, Geo-location, v1 + +Longitude and latitude of the Environment and Climate Change Canada HRDPS West polar-stereographic model grid. +This is the model grid that was used for atmospheric forcing for the SalishSeaCast NEMO model between +2014-09-12 and 2023-02-22. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. + +v1: longitude and latitude variables + HRDPS, Salish Sea, Atmospheric Forcing Grid, Geo-location, v1 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eaos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Environment and Climate Change Canada + over + + + y + gridY + + + location + Y Coordinate of Projection + + + + x + gridX + + + location + X Coordinate of Projection + + + + nav_lon + longitude + + float + + Longitude + location + + + + nav_lat + latitude + + float + + Latitude + location + + + diff --git a/datasets/atmospheric/ubcSSaSurfaceAtmosphereFieldsV1.xml b/datasets/atmospheric/ubcSSaSurfaceAtmosphereFieldsV1.xml new file mode 100644 index 0000000..20affa9 --- /dev/null +++ b/datasets/atmospheric/ubcSSaSurfaceAtmosphereFieldsV1.xml @@ -0,0 +1,278 @@ + + 10080 + 10000 + /results/forcing/atmospheric/GEM2.5/operational/ + false + .*ops_y\d{4}m\d{2}d\d{2}\.nc$ + last + 20 + false + false + + + now-12hours + Grid + modelResult + CF-1.6, COARDS, ACDD-1.3 + null + Files generated daily by +`python3 -m nowcast.workers.grib_to_netcdf $NOWCAST_YAML nowcast+` + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + model results, atmosphere, +Atmosphere > Atmospheric Water Vapor > Humidity, +atmospheric, atmpres, humidity, long-wave, precipitation, pressure, qair, rad, radiation, rain, rainfall, short-wave, solar, specific_humidity, tair, temperature, therm_rad, time, time_counter, u-component, u_wind, v-component, v_wind, vapor, wind + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +This dataset was derived from a product of the Environment and Climate Change Canada HRDPS +(High Resolution Deterministic Prediction System) West model polar-stereographic projection product. +The Terms and conditions of use of Meteorological Data from Environment and Climate Change Canada +are available at http://dd.weather.gc.ca/doc/LICENCE_GENERAL.txt. + CF Standard Name Table v29 + HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 + +2d hourly atmospheric field values from the Environment and Climate Change Canada HRDPS +atmospheric forcing model that were used to force the SalishSeaCast NEMO model between +2014-09-12 and 2023-02-22. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +Geo-location data for the atmospheric forcing grid are available in the ubcSSaAtmosphereGridV1 dataset. +Atmospheric field values are interpolated on to the Salish Sea NEMO model grid on-the-fly by NEMO. + +v1: atmospheric pressure, precipitation rate, 2m specific humidity, 2m air temperature, +short-wave radiation flux, long-wave radiation flux, 10m u wind component, 10m v wind component variables + HRDPS, Salish Sea, Atmospheric Forcing Fields, Hourly, v1 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Environment and Climate Change Canada + over + + + time_counter + time + + + null + time + + + + y + gridY + + + null + null + count + Y + y + Y values are grid indices in the model y-direction; +geo-location data for the SalishSeaCast sub-domain of the ECCC MSC 2.5km resolution HRDPS West +polar-stereographic model grid is available in the ubcSSaAtmosphereGridV1 dataset. + + + + x + gridX + + + null + null + null + X + x + X values are grid indices in the model x-direction; +geo-location data for the SalishSeaCast sub-domain of the ECCC MSC 2.5km resolution HRDPS West +polar-stereographic model grid is available in the ubcSSaAtmosphereGridV1 dataset. + + + + atmpres + atmpres + float + + + null + null + + + + precip + precip + float + + + null + 200.0 + 0.0 + null + + + + qair + qair + float + + + null + 128.0 + 0.0 + null + specific_humidity + + + + solar + solar + float + + + null + 500.0 + -500.0 + null + + + + tair + tair + float + + + null + 313.0 + 263.0 + null + + + + therm_rad + therm_rad + float + + + null + null + + + + u_wind + u_wind + float + + + null + null + + + + v_wind + v_wind + float + + + null + null + + + diff --git a/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicR12.xml b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicR12.xml new file mode 100644 index 0000000..45ea409 --- /dev/null +++ b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicR12.xml @@ -0,0 +1,108 @@ + + /opp/fvcom/nowcast-r12/ + .* + .*vh_r12_[0s].*\.nc$ + true + 10080 + + + now+24hours + Grid + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, R12 + +Baroclinic sea surface height, currents, temperature, and salinity from +VHFR R12 configuration FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. +The model runs include Fraser River discharge forcing based on +daily average discharges from river gauge at Hope with a 1 day lag. +The river temperature is climatological. +The time values are UTC. + +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. + +R12: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada + null + + + url + url + String + + + + + + name + name + String + + + + + + lastModified + lastModified + double + + + + + + size + size + double + + + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type + + + diff --git a/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicX2.xml b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicX2.xml new file mode 100644 index 0000000..06fd022 --- /dev/null +++ b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFR-BaroclinicX2.xml @@ -0,0 +1,108 @@ + + /opp/fvcom/ + /opp/fvcom/(|nowcast-x2/.*|most_recent_forecast/) + .*vh_x2_[0s].*\.nc$ + true + 10080 + + + now+24hours + Grid + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 + Files, FVCOM, Vancouver Harbour and Fraser River, Baroclinic, X2 + +Baroclinic sea surface height, currents, temperature, and salinity from +VHFR X2 configuration FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. +From 2019-02-06 onward the model runs include Fraser River discharge forcing based on +daily average discharges from river gauge at Hope with a 1 day lag. +The river temperature is climatological. +The time values are UTC. + +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the Salish Sea NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. + +X2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada + null + + + url + url + String + + + + + + name + name + String + + + + + + lastModified + lastModified + double + + + + + + size + size + double + + + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type + + + diff --git a/datasets/fvcom-vhfr/ubcSSFVCOM-VHFRLowFilesV2.xml b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFRLowFilesV2.xml new file mode 100644 index 0000000..e206bfe --- /dev/null +++ b/datasets/fvcom-vhfr/ubcSSFVCOM-VHFRLowFilesV2.xml @@ -0,0 +1,105 @@ + + /opp/fvcom/nowcast/ + .* + .*vhfr_low_v2_[0s].*\.nc$ + true + 10080 + + + now+24hours + Grid + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 + Files, FVCOM, Vancouver Harbour and Fraser River, Barotropic, V2 + +Barotropic sea surface height, and currents from VHFR low resolution V2 configuration +FVCOM model runs. +The values are calculated for an unstructured model grid that covers Vancouver Harbour, +English Bay, and the lower Fraser River on the coast of British Columbia. +The time values are UTC. + +The Vancouver Harbour and Fraser River (VHFR) FVCOM model grid and configurations +were developed by Michael Dunphy, et al at the Institute of Ocean Sciences. +The VHFR FVCOM model uses currents, sea surface height, temperature, and salinity +from the SalishSeaCast NEMO model as boundary conditions, and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. + +V2: FVCOM-4.1; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry. + + SalishSeaCast Project Contributors + Michael.Dunphy@dfo-mpo.gc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans Canada, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada + null + + + url + url + String + + + + + + name + name + String + + + + + + lastModified + lastModified + double + + + + + + size + size + double + + + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type + + + diff --git a/datasets/nemo-grid/ubcSSn2DMeshMaskV17-02.xml b/datasets/nemo-grid/ubcSSn2DMeshMaskV17-02.xml new file mode 100644 index 0000000..6e80342 --- /dev/null +++ b/datasets/nemo-grid/ubcSSn2DMeshMaskV17-02.xml @@ -0,0 +1,393 @@ + + 10080 + 10000 + /SalishSeaCast/grid/ + false + .*mesh_mask201702\.nc$ + last + 20 + false + false + + + Grid + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada + +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + bathymetry, coordinates, depth, e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, f-grid, fmaskutil, +glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, grid, grid parameters, mbathy, mesh mask, NEMO, ocean, +Salish Sea, sea, spacing, t-grid, tmaskutil, u-grid, umaskutil, v-grid, vmaskutil, vorticity-grid + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v17-02 + +NEMO grid variable value for the u-v plane of the +SalishSeaCast NEMO model Arakawa-C grid. +The values are those calculated by NEMO from the input coordinates and bathymetry files. +The variable names are those used by NEMO-3.6, +see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, +or the long_name attributes of the variables for succinct descriptions of the variables. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. + +v1: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, + tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables +v16-07: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv, + glamf, gphif, tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables +v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, + e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, mbathy variables + SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/mesh_mask201702.nc + null + null + null + null + + + t + time + + + modelResult + Time Axis + time + proleptic_gregorian + 2014-09-12 00:30:00 + seconds since 2014-09-12 00:30:00 + + + + y + gridY + + + modelResult + Grid Y + y + count + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + modelResult + Grid X + x + count + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + tmaskutil + tmaskutil + byte + + modelResult + Dry Land Mask for T-grid and W-grid + tmaskutil + grid_parameter + land, water + 0, 1 + + + + umaskutil + umaskutil + byte + + modelResult + Dry Land Mask for U-grid + umaskutil + grid_parameter + land, water + 0, 1 + + + + vmaskutil + vmaskutil + byte + + modelResult + Dry Land Mask for V-grid + vmaskutil + grid_parameter + land, water + 0, 1 + + + + fmaskutil + fmaskutil + byte + + modelResult + Dry Land Mask for vorticity-grid + fmaskutil + grid_parameter + land, water + 0, 1 + + + + glamt + glamt + float + + modelResult + Longitude of T-grid Points + glamt + grid_parameter + degrees_east + + + + glamu + glamu + float + + modelResult + Longitude of U-grid Points + glamu + grid_parameter + degrees_east + + + + glamv + glamv + float + + modelResult + Longitude of V-grid Points + glamv + grid_parameter + degrees_east + + + + glamf + glamf + float + + modelResult + Longitude of Vorticity-grid Points + glamf + grid_parameter + degrees_east + + + + gphit + gphit + float + + modelResult + Latitude of T-grid Points + gphit + grid_parameter + degrees_north + + + + gphiu + gphiu + float + + modelResult + Latitude of U-grid Points + gphiu + grid_parameter + degrees_north + + + + gphiv + gphiv + float + + modelResult + Latitude of V-grid Points + gphiv + grid_parameter + degrees_north + + + + gphif + gphif + float + + modelResult + Latitude of Vorticity-grid Points + gphif + grid_parameter + degrees_north + + + + e1t + e1t + double + + modelResult + Grid Spacing on T-grid in u Direction + e1t + grid_parameter + m + + + + e1u + e1u + double + + modelResult + Grid Spacing on U-grid in u Direction + e1u + grid_parameter + m + + + + e1v + e1v + double + + modelResult + Grid Spacing on V-grid in u Direction + e1v + grid_parameter + m + + + + e1f + e1f + double + + modelResult + Grid Spacing on Vorticity-grid in u Direction + e1f + grid_parameter + m + + + + e2t + e2t + double + + modelResult + Grid Spacing on T-grid in v Direction + e2t + grid_parameter + m + + + + e2u + e2u + double + + modelResult + Grid Spacing on U-grid in v Direction + e2u + grid_parameter + m + + + + e2v + e2v + double + + modelResult + Grid Spacing on V-grid in v Direction + e2v + grid_parameter + m + + + + e2f + e2f + double + + modelResult + Grid Spacing on Vorticity-grid in v Direction + e2f + grid_parameter + m + + + + ff + ff + double + + modelResult + Coriolis parameter on Vorticity-grid + ff + grid_parameter + s-1 + + + + mbathy + mbathy + short + + modelResult + Fortran Index of Deepest Water Cell, T-grid + mbathy + grid_parameter + count + + + diff --git a/datasets/nemo-grid/ubcSSn3DMeshMaskV17-02.xml b/datasets/nemo-grid/ubcSSn3DMeshMaskV17-02.xml new file mode 100644 index 0000000..ea3685a --- /dev/null +++ b/datasets/nemo-grid/ubcSSn3DMeshMaskV17-02.xml @@ -0,0 +1,448 @@ + + 10080 + 10000 + /SalishSeaCast/grid/ + false + .*mesh_mask201702\.nc$ + last + 20 + false + false + + + Grid + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada + +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + bathymetry, coordinates, depth, e3t_0, e3u_0, e3v_0, e3w_0, f-grid, fmask, gdept_0, gdepu, gdepv, +gdepw_0, grid, grid parameters, mesh mask, NEMO, ocean, Salish Sea, sea, spacing, t-grid, tmask, u-grid, umask, +v-grid, vmask, vorticity-grid, w-grid + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v17-02 + +NEMO grid variable value for the SalishSeaCast NEMO model Arakawa-C grid. +The values are those calculated by NEMO from the input coordinates and bathymetry files. +The variable names are those used by NEMO-3.6, +see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details, +or the long_name attributes of the variables for succinct descriptions of the variables. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. + +v1: e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0, tmask, umask, vmask, fmask variables +v16-07: e3t, e3u, e3v, e3w, gdept, gdepu, gdepv, gdepw, tmask, umask, vmask, fmask variables + +v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0 variables + SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/mesh_mask201702.nc + null + null + null + null + + + t + time + + + modelResult + Time Axis + time + proleptic_gregorian + 2014-09-12 00:30:00 + seconds since 2014-09-12 00:30:00 + + + + z + gridZ + + + modelResult + Grid Z + z + count + gridZ values are grid indices of the model depth levels. + location + + + + y + gridY + + + modelResult + Grid Y + y + count + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + modelResult + Grid X + x + count + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + tmask + tmask + byte + + + modelResult + Land Mask for T-grid and W-grid + tmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + + + + umask + umask + byte + + + modelResult + Land Mask for U-grid + umask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + + + + vmask + vmask + byte + + + modelResult + Land Mask for V-grid + vmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + + + + fmask + fmask + byte + + + modelResult + Land Mask for vorticity-grid + fmask + grid_parameter + land, water + 0, 1 + null + null + null + null + null + null + + + + e3t_0 + e3t_0 + double + + + modelResult + Grid Spacing on T-grid in w Direction + e3t_0 + grid_parameter + m + null + null + null + null + null + null + + + + e3u_0 + e3u_0 + double + + + modelResult + Grid Spacing on U-grid in w Direction + e3u_0 + grid_parameter + m + null + null + null + null + null + null + + + + e3v_0 + e3v_0 + double + + + modelResult + Grid Spacing on V-grid in w Direction + e3v_0 + grid_parameter + m + null + null + null + null + null + null + + + + e3w_0 + e3w_0 + double + + + modelResult + Grid Spacing on W-grid in w Direction + e3w_0 + grid_parameter + m + null + null + null + null + null + null + + + + gdept_0 + gdept_0 + float + + + modelResult + Depth of T-grid Points + down + gdept_0 + grid_parameter + m + null + null + null + null + null + null + + + + gdepu + gdepu + float + + + modelResult + Depth of U-grid Points + down + gdepu + grid_parameter + m + null + null + null + null + null + null + + + + gdepv + gdepv + float + + + modelResult + Depth of V-grid Points + down + gdepv + grid_parameter + m + null + null + null + null + null + null + + + + gdepw_0 + gdepw_0 + float + + + modelResult + Depth of W-grid Points + down + gdepw_0 + grid_parameter + m + null + null + null + null + null + null + + + diff --git a/datasets/nemo-grid/ubcSSnBathymetryV17-02.xml b/datasets/nemo-grid/ubcSSnBathymetryV17-02.xml new file mode 100644 index 0000000..c40ac80 --- /dev/null +++ b/datasets/nemo-grid/ubcSSnBathymetryV17-02.xml @@ -0,0 +1,185 @@ + + 10080 + 10000 + /SalishSeaCast/grid/ + false + .*bathymetry_201702\.nc$ + last + 20 + false + false + + + Grid + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Canadian Hydrographic Service (CHS), +National Ocean and Atmospheric Administration (NOAA), +United States Geological Service (USGS), +Digital Research Alliance of Canada + +This product has been produced by the University of British Columbia based in part on +Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence +No. 2016-0504-1260-U. + +The incorporation of data sourced from CHS in this product shall not be construed as +constituting an endorsement of CHS of this product. + +This product does not meet the requirements of Charts and Nautical Publications Regulations, +1995 under the Canadian Shipping Act, 2001. +Official charts and publications, corrected and up-to-data, +must be used to meet the requirements of those regulations. + over + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + https://salishsea.eos.ubc.ca/ + bathymetry, depth, latitude, longitude, nav_lat, nav_lon, ocean, oceans, +Oceans > Bathymetry/Seafloor Topography > Bathymetry, +Salish Sea, sea floor, sea_floor_depth, seafloor, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v17-02 + +Longitude, latitude, and bathymetry of the SalishSeaCast NEMO model grid. +The bathymetry values are those calculated by NEMO from the input bathymetry file. +NEMO modifies the input bathymetry to remove isolated holes, and too-small partial steps; +See the ubcSSn2DMeshMaskV17-02 dataset for the complete details of the calculation grid. +The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. + +v1: longitude, latitude and bathymetry variables +v16-07: same variables, + bathymetry uniformly deepened by 1 grid level, + smoothed at Juan de Fuca & Johnstone Strait open boundaries, + Fraser River lengthened, + bathymetry deepened near mouth of Fraser River +v17-02: same variables, + Bathymetry composed from 3 datasets: + * USGS Digital elevation model (DEM) of Cascadia, latitude 39N-53N, longitude 116W-133W, Open-File Report 99-369, https://pubs.er.usgs.gov/publication/ofr99369 + * NOAA British Columbia, 3 arc-second MSL DEM, https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4956 + * CHS Multibeam data and all point cloud data for the Salish Sea. + Smoothed at Juan de Fuca & Johnstone Strait open boundaries. + Proxy channel for Fraser River upstream of confluence with the Pitt River. + Adjustments by Michael Dunphy to make increase resolution of Fraser River channels downstream of confluence with the Pitt River. + + SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v17-02 + SalishSeaCast NEMO Model + https://github.com/SalishSeaCast/grid/blob/main/bathymetry_201702.nc + https://github.com/SalishSeaCast/tools/blob/main/bathymetry/ProcessNewRiverBathymetry.ipynb + null + null + + + y + gridY + + + Grid Y + y + modelResult + y values are grid indices in the model y-direction. + location + + + + x + gridX + + + Grid X + x + modelResult + x values are grid indices in the model x-direction. + location + + + + Bathymetry + bathymetry + double + + + null + 450.0 + 0.0 + OceanDepth + Sea Floor Depth + sea_floor_depth + modelResult + null + null + null + null + null + bathymetry + + + + nav_lat + latitude + double + + + null + 52.0 + 46.0 + modelResult + null + null + null + null + null + location + latitude + Latitude + + + + nav_lon + longitude + double + + + null + -121.0 + -127.0 + modelResult + null + null + null + null + null + location + longitude + Longitude + + + diff --git a/datasets/onc-observations/ubcONCLSBBLCTD15mV1.xml b/datasets/onc-observations/ubcONCLSBBLCTD15mV1.xml new file mode 100644 index 0000000..b13b903 --- /dev/null +++ b/datasets/onc-observations/ubcONCLSBBLCTD15mV1.xml @@ -0,0 +1,249 @@ + + 10080 + 10000 + /results/observations/ONC/CTD/LSBBL/ + false + .*LSBBL_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + depth, longitude, latitude + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=LSBBL&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Fraser River Delta Lower Slope Node Bottom Boundary Layer Station, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, LSBBL, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 + +Temperature and salinity data from the Ocean Networks Canada (ONC) +Fraser River Delta Lower Slope Bottom Boundary Layer Node CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. + +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Fraser River Delta Lower Slope BBL Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Temperature Standard Deviation + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + + + + salinity_sample_count + salinity_sample_count + long + + + null + Reference Salinity Sample Count + + + + temperature_sample_count + temperature_sample_count + long + + + null + Temperature Sample Count + + + + latitude + latitude + double + + + 90.0 + -90.0 + Latitude + latitude + degrees_north + + + + longitude + longitude + double + + + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + depth + depth + long + + + 450.0 + 0.0 + OceanDepth + Depth + depth + m + + + diff --git a/datasets/onc-observations/ubcONCSCVIPCTD15mV1.xml b/datasets/onc-observations/ubcONCSCVIPCTD15mV1.xml new file mode 100644 index 0000000..65bd9a2 --- /dev/null +++ b/datasets/onc-observations/ubcONCSCVIPCTD15mV1.xml @@ -0,0 +1,249 @@ + + 10080 + 10000 + /results/observations/ONC/CTD/SCVIP/ + false + .*SCVIP_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + depth, longitude, latitude + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=SCVIP&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Central Node VENUS Instrument Platform, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SCVIP, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 + +Temperature and salinity data from the Ocean Networks Canada (ONC) +Strait of Georgia Central Node VENUS Instrument Platform CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. + +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Central Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + temperature_sample_count + temperature_sample_count + long + + + null + Temperature Sample Count + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + salinity_sample_count + salinity_sample_count + long + + + null + Reference Salinity Sample Count + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Temperature Standard Deviation + + + + depth + depth + long + + + 450.0 + 0.0 + OceanDepth + Depth + depth + m + + + + longitude + longitude + double + + + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + latitude + latitude + double + + + 90.0 + -90.0 + Latitude + latitude + degrees_north + + + diff --git a/datasets/onc-observations/ubcONCSEVIPCTD15mV1.xml b/datasets/onc-observations/ubcONCSEVIPCTD15mV1.xml new file mode 100644 index 0000000..d447f77 --- /dev/null +++ b/datasets/onc-observations/ubcONCSEVIPCTD15mV1.xml @@ -0,0 +1,249 @@ + + 10080 + 10000 + /results/observations/ONC/CTD/SEVIP/ + false + .*SEVIP_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + depth, longitude, latitude + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=SEVIP&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC East Node VENUS Instrument Platform, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, SEVIP, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 + +Temperature and salinity data from the Ocean Networks Canada (ONC) +Strait of Georgia East Node VENUS Instrument Platform CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. + +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, East Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Temperature Standard Deviation + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + + + + salinity_sample_count + salinity_sample_count + long + + + null + Reference Salinity Sample Count + + + + temperature_sample_count + temperature_sample_count + long + + + null + Temperature Sample Count + + + + latitude + latitude + double + + + 90.0 + -90.0 + Latitude + latitude + degrees_north + + + + longitude + longitude + double + + + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + depth + depth + long + + + 450.0 + 0.0 + OceanDepth + Depth + depth + m + + + diff --git a/datasets/onc-observations/ubcONCTWDP1mV18-01.xml b/datasets/onc-observations/ubcONCTWDP1mV18-01.xml new file mode 100644 index 0000000..0aec0a4 --- /dev/null +++ b/datasets/onc-observations/ubcONCTWDP1mV18-01.xml @@ -0,0 +1,1407 @@ + + 10800 + 10000 + /results/observations/ONC/ferries/TWDP/ + false + .*TWDP_TSG_O2_TURBCHLFL_CO2_METEO_1m_\d{8}.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + longitude, latitude, on_crossing_mask, crossing_number + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 1min aggregation, ONC Mobile Platforms, British Columbia Ferries, +Tsawwassen - Duke Point route, Ocean Networks Canada, +UBC EOAS, Strait of Georgia, latitude, longitude, ocean, observations, +Atmosphere > Atmospheric Pressure > Surface Pressure, +Atmosphere > Atmospheric Radiation > Longwave Radiation, +Atmosphere > Atmospheric Radiation > Shortwave Radiation, +Atmosphere > Atmospheric Temperature > Air Temperature, +Atmosphere > Atmospheric Temperature > Surface Air Temperature, +Atmosphere > Atmospheric Water Vapor > Humidity, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +Oceans &gt; Salinity/Density &gt; Conductivity, +Oceans &gt; Ocean Chemistry &gt; Carbon Dioxide, +Oceans &gt; Ocean Chemistry &gt; Oxygen, +air_temperature, air_temperature_sample_count, air_temperature_standard_deviations, air_temperature_std_dev, atmosphere, +barometric_pressure, barometric_pressure_sample_count, barometric_pressure_std_dev, +carbon dioxide, cdom, cdom_fluorescence, cdom_fluorescence_sample_count, cdom_fluorescence_std_dev, +chemistry, chlorophyl, chlorophyll, chlorophyll_sample_count, chlorophyll_std_dev, +CO2, co2_concentration_linearized, co2_concentration_linearized_sample_count, co2_concentration_linearized_std_dev, +co2_partial_pressure, co2_partial_pressure_sample_count, co2_partial_pressure_std_dev, +crossing_number, conductivity, conductivity_sample_count, conductivity_std_dev, +dissolved O2, electrical conductivity, +fluorescence, fractional_saturation_of_oxygen_in_sea_water, fractional_saturation_of_oxygen_in_sea_water_sample_count, +fractional_saturation_of_oxygen_in_sea_water_standard_deviation, +latitude, longitude, +longwave_radiation, longwave_radiation_sample_count, longwave_radiation_std_dev, +mass_concentration_of_chlorophyl_in_sea_water, mass_concentration_of_chlorophyl_in_sea_water_sample_count, +mass_concentration_of_chlorophyl_in_sea_water_standard_deviation, +mass_fraction_of_cdom_fluorescence_in_sea_water, mass_fraction_of_cdom_fluorescence_in_sea_water_sample_count, +mass_fraction_of_cdom_fluorescence_in_sea_water_standard_deviation, +mole_fraction_of_carbon_dioxide_in_sea_water, mole_fraction_of_carbon_dioxide_in_sea_water_sample_count, +mole_fraction_of_carbon_dioxide_in_sea_water_standard_deviation, +O2, O2 sensor temperature, +o2_concentration_corrected, o2_concentration_corrected_sample_count, o2_concentration_corrected_std_dev, +o2_saturation, o2_saturation_sample_count, o2_saturation_std_dev, +ocean, on_crossing_mask, optical properties, organic, oxygen, partial pressure, +reference salinity, salinity, salinity_sample_count, salinity_std_dev, sea water, +relative_humidity, relative_humidity_sample_count, relative_humidity_standard_deviation, relative_humidity_std_dev, +sea water electrical conductivity, sea_water_electrical_conductivity, +sea_water_electrical_conductivity_sample_count, sea_water_electrical_conductivity_standard_deviation, +sea_water_reference_salinity, sea_water_reference_salinity_sample_count, +sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +sea_water_turbidity, sea_water_turbidity_sample_count, sea_water_turbidity_standard_deviation, +solar_radiation, solar_radiation_sample_count, solar_radiation_std_dev, +seawater, +surface_air_pressure, surface_air_pressure_sample_count, surface_air_pressure_standard_deviation, +surface_downwelling_longwave_flux_in_air, surface_downwelling_longwave_flux_in_air_standard_deviation, surface_downwelling_shortwave_flux_in_air, surface_downwelling_shortwave_flux_in_air_sample_count, surface_downwelling_shortwave_flux_in_air_standard_deviation, +surface_partial_pressure_of_carbon_dioxide_in_sea_water, +surface_partial_pressure_of_carbon_dioxide_in_sea_water_sample_count, +surface_partial_pressure_of_carbon_dioxide_in_sea_water_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, +temperature_of_sensor_for_oxygen_in_sea_water, temperature_of_sensor_for_oxygen_in_sea_water_sample_count, +temperature_of_sensor_for_oxygen_in_sea_water_standard_deviation, +time, turbidity, +volume_fraction_of_oxygen_in_sea_water, volume_fraction_of_oxygen_in_sea_water_sample_count, +volume_fraction_of_oxygen_in_sea_water_standard_deviation + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 + +Data from the Ocean Networks Canada (ONC) +Strait of Georgia Mobile Platforms, British Columbia Ferries, Tsawwassen - Duke Point route. +The data are resampled from the raw instrument data to 1 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 1 minute +aggregation intervals. + +v1: on_crossing_mask, crossing_number, + temperature, temperature standard deviation, temperature sample counts, + conductivity, conductivity standard deviation, conductivity sample counts, + reference salinity, reference salinity standard deviation, reference salinity sample counts, + O2 saturation, O2 saturation standard deviation, O2 saturation sample counts, + corrected O2 concentration, corrected O2 concentration standard deviation, corrected O2 concentration sample counts, + O2 sensor temperature, O2 sensor temperature standard deviation, O2 sensor temperature sample counts, + CDOM fluorescence, CDOM fluorescence standard deviation, CDOM fluorescence sample counts, + chlorophyll, chlorophyll standard deviation, chlorophyll sample counts, + turbidity, turbidity standard deviation, turbidity sample counts, + CO2 partial pressure, CO2 partial pressure standard deviation, CO2 partial pressure sample counts, + linearized CO2 concentration, linearized CO2 concentration standard deviation, linearized CO2 concentration sample counts, + variables +v18-01: Add air temperature, air temperature standard deviation, air temperature sample counts, + relative humidity, relative humidity standard deviation, relative humidity sample counts, + barometric pressure, barometric pressure standard deviation, barometric pressure sample counts, + solar radiation, solar radiation standard deviation, solar radiation sample counts, + longwave radiation, longwave radiation standard deviation, longwave radiation sample counts, + variables + + ONC, Strait of Georgia, BC Ferries, Tsawwassen - Duke Point, 1min, v18-01 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.org/ + Ocean Networks Canada (ONC) + over + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 1 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + longitude + longitude + double + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV + 180.0 + -180.0 + degrees_east + + + + latitude + latitude + double + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP.N1&deviceCategory=NAV + 90.0 + -90.0 + degrees_north + + + + nemo_grid_j + nemo_grid_j + short + + + null + NEMO Grid j Index + https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV + count + -999 means a longitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument + + + + nemo_grid_i + nemo_grid_i + short + + + null + NEMO Grid i Index + https://data.oceannetworks.ca/DataSearch?deviceCategory=NAV + count + -999 means a latitude outside of the SalishSeaCast NEMO grid; typically a NaN from the nav instrument + + + + on_crossing_mask + on_crossing_mask + byte + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP + + + + crossing_number + crossing_number + double + + + null + https://data.oceannetworks.ca/DataSearch?location=TWDP + 10.0 + 0.0 + + + + temperature + temperature + double + + + null + Potential Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 25.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Potential Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + temperature_sample_count + temperature_sample_count + int + + + null + Potential Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + conductivity + conductivity + double + + + null + Conductivity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 0.0 + 5.0 + + + + conductivity_std_dev + conductivity_std_dev + double + + + null + Conductivity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + conductivity_sample_count + conductivity_sample_count + int + + + null + Conductivity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + salinity + salinity + double + + + null + Reference Salinity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + 34.0 + 0.0 + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + salinity_sample_count + salinity_sample_count + int + + + null + Reference Salinity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TSG + + + + o2_saturation + o2_saturation + double + + + null + O2 Saturation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 180.0 + 0.0 + percent + + + + o2_saturation_std_dev + o2_saturation_std_dev + double + + + null + O2 Saturation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + percent + + + + o2_saturation_sample_count + o2_saturation_sample_count + int + + + null + O2 Saturation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + + + + o2_concentration_corrected + o2_concentration_corrected + double + + + null + Corrected O2 Concentration + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 1.0 + 0.0 + + + + o2_concentration_corrected_std_dev + o2_concentration_corrected_std_dev + double + + + null + Corrected O2 Concentration Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + + + + o2_concentration_corrected_sample_count + o2_concentration_corrected_sample_count + int + + + null + Corrected O2 Concentration Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + + + + o2_temperature + o2_temperature + double + + + null + O2 Sensor Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + 500.0 + 0.0 + + + + o2_temperature_std_dev + o2_temperature_std_dev + double + + + null + O2 Sensor Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + + + + o2_temperature_sample_count + o2_temperature_sample_count + int + + + null + O2 Sensor Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=OXYSENSOR + + + + cdom_fluorescence + cdom_fluorescence + double + + + null + CDOM Fluorescence Mass Fraction + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + 1.0 + 0.0 + + + + cdom_fluorescence_std_dev + cdom_fluorescence_std_dev + double + + + null + CDOM Fluorescence Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + cdom_fluorescence_sample_count + cdom_fluorescence_sample_count + int + + + null + CDOM Fluorescence Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + chlorophyll + chlorophyll + double + + + null + Chlorophyll Concentration + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + 70.0 + 0.0 + + + + chlorophyll_std_dev + chlorophyll_std_dev + double + + + null + Chlorophyll Concentration Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + chlorophyll_sample_count + chlorophyll_sample_count + int + + + null + Chlorophyll Concentration Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + turbidity + turbidity + double + + + null + Turbidity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + turbidity_std_dev + turbidity_std_dev + double + + + null + Turbidity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + turbidity_sample_count + turbidity_sample_count + int + + + null + Turbidity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TURBCHLFL + + + + co2_partial_pressure + co2_partial_pressure + double + + + null + CO2 Partial Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + + + + co2_partial_pressure_std_dev + co2_partial_pressure_std_dev + double + + + null + CO2 Partial Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + + + + co2_partial_pressure_sample_count + co2_partial_pressure_sample_count + int + + + null + CO2 Partial Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + + + + co2_concentration_linearized + co2_concentration_linearized + double + + + null + CO2 Partial Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + 1.0 + 0.0 + + + + co2_concentration_linearized_std_dev + co2_concentration_linearized_std_dev + double + + + null + CO2 Partial Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + + + + co2_concentration_linearized_sample_count + co2_concentration_linearized_sample_count + int + + + null + CO2 Partial Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=CO2SENSOR + + + + air_temperature + air_temperature + double + + + null + Air Temperature + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 40.0 + -10.0 + Meteorology + + + + air_temperature_std_dev + air_temperature_std_dev + double + + + null + Air Temperature Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 50.0 + 0.0 + Meteorology + + + + air_temperature_sample_count + air_temperature_sample_count + int + + + null + Air Temperature Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 + 0.0 + Meteorology + + + + relative_humidity + relative_humidity + double + + + null + Relative Humidity + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 + 0.0 + Meteorology + percent + + + + relative_humidity_std_dev + relative_humidity_std_dev + double + + + null + Relative Humidity Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 5.0 + 0.0 + Meteorology + percent + + + + relative_humidity_sample_count + relative_humidity_sample_count + int + + + null + Relative Humidity Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=TEMPHUMID + 100.0 + 0.0 + Meteorology + + + + barometric_pressure + barometric_pressure + double + + + null + Barometric Pressure + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 1050.0 + 950.0 + Pressure + + + + barometric_pressure_std_dev + barometric_pressure_std_dev + double + + + null + Barometric Pressure Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 50.0 + 0.0 + Pressure + + + + barometric_pressure_sample_count + barometric_pressure_sample_count + int + + + null + Barometric Pressure Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=BARPRESS + 100.0 + 0.0 + Pressure + + + + solar_radiation + solar_radiation + double + + + null + Solar Radiation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 500.0 + -500.0 + + + + solar_radiation_std_dev + solar_radiation_std_dev + double + + + null + Solar Radiation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 50.0 + 0.0 + + + + solar_radiation_sample_count + solar_radiation_sample_count + int + + + null + Solar Radiation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRANOMETER + 100.0 + 0.0 + + + + longwave_radiation + longwave_radiation + double + + + null + Longwave Radiation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 500.0 + -500.0 + + + + longwave_radiation_std_dev + longwave_radiation_std_dev + double + + + null + Longwave Radiation Standard Deviation + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 50.0 + 0.0 + + + + longwave_radiation_sample_count + longwave_radiation_sample_count + int + + + null + Longwave Radiation Sample Count + https://data.oceannetworks.ca/DataSearch?location=TWDP&deviceCategory=PYRGEOMETER + 100.0 + 0.0 + + + diff --git a/datasets/onc-observations/ubcONCUSDDLCTD15mV1.xml b/datasets/onc-observations/ubcONCUSDDLCTD15mV1.xml new file mode 100644 index 0000000..abac4e0 --- /dev/null +++ b/datasets/onc-observations/ubcONCUSDDLCTD15mV1.xml @@ -0,0 +1,249 @@ + + 10080 + 10000 + /results/observations/ONC/CTD/USDDL/ + false + .*USDDL_CTD_15m_\d{8}\.nc$ + last + + + + + time + time + false + false + + + + now-2days + TimeSeries + depth, longitude, latitude + CF-1.6, COARDS, ACDD-1.3 + SalishSeaCast Project Contributors + sallen@eos.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + Ocean Networks Canada (ONC) + https://data.oceannetworks.ca/DataSearch?location=USDDL&deviceCategory=CTD + over + https://salishsea.eos.ubc.ca/ + UBC EOAS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia + 15min aggregation, ONC Fraser River Delta Upper Slope Node Delta Dynamics Laboratory Station, Ocean Networks Canada, +depth, UBC EOAS, Strait of Georgia, latitude, longitude, ocean, USDDL, observations, CTD, +Oceans &gt; Ocean Temperature &gt; Water Temperature, +reference salinity, salinity_sample_count, salinity_std_dev, sea_water_reference_salinity, +sea_water_reference_salinity_sample_count, sea_water_reference_salinity_standard_deviation, +sea_water_temperature, sea_water_temperature_sample_count, sea_water_temperature_standard_deviation, +temperature, temperature_sample_count, temperature_std_dev, time + GCMD Science Keywords + The SalishSeaCast observation datasets are copyright +by the SalishSeaCast Project Contributors, The University of British Columbia, and Ocean Networks Canada. + +They are licensed under the Apache License, Version 2.0. http://www.apache.org/licenses/LICENSE-2.0 + +Raw instrument data on which this dataset is based were provided by Ocean Networks Canada. + (local files) + CF Standard Name Table v29 + ONC, Strait of Georgia, Fraser River Delta Upper Sloper DDL Node, Salinity and Temperature, 15min, v1 + +Temperature and salinity data from the Ocean Networks Canada (ONC) +Fraser River Delta Upper Slope Delta Dynamics Laboratory Node CTD. +The data are resampled from the raw instrument data to 15 minute mean values. +They are accompanied by standard deviations and sample counts for each of the 15 minute +aggregation intervals. + +v1: reference salinity, reference salinity standard deviation, reference salinity sample counts, +temperature, temperature standard deviation, temperature sample counts variables + ONC, Strait of Georgia, Fraser River Delta Upper Slope DDL Node, Salinity and Temperature, 15min, v1 + SalishSeaCast NEMO Model + +Download raw data from ONC scalardata API. +Filter to exclude data with qaqcFlag != 1. +Resample data to 15 minute intervals using mean, standard deviation and count as aggregation functions. +Store as netCDF4 file. + + + + time + time + long + + + null + Time + time + timeseries_id + + + + salinity + salinity + double + + + null + Reference Salinity + 34.0 + 0.0 + + + + temperature + temperature + double + + + null + Temperature + 20.0 + 4.0 + + + + temperature_std_dev + temperature_std_dev + double + + + null + Temperature Standard Deviation + + + + salinity_std_dev + salinity_std_dev + double + + + null + Reference Salinity Standard Deviation + + + + salinity_sample_count + salinity_sample_count + long + + + null + Reference Salinity Sample Count + + + + temperature_sample_count + temperature_sample_count + long + + + null + Temperature Sample Count + + + + latitude + latitude + double + + + 90.0 + -90.0 + Latitude + latitude + degrees_north + + + + longitude + longitude + double + + + 180.0 + -180.0 + Longitude + longitude + degrees_east + + + + depth + depth + long + + + 450.0 + 0.0 + OceanDepth + Depth + depth + m + + + diff --git a/datasets/postfix.xml b/datasets/postfix.xml new file mode 100644 index 0000000..dea7dd6 --- /dev/null +++ b/datasets/postfix.xml @@ -0,0 +1 @@ + diff --git a/datasets/prefix.xml b/datasets/prefix.xml new file mode 100644 index 0000000..0a01d17 --- /dev/null +++ b/datasets/prefix.xml @@ -0,0 +1,20 @@ + + + + + + + 136.243.228.193 + + + + + diff --git a/datasets/rolling-forecasts/ubcSSf3DuGridFields1h.xml b/datasets/rolling-forecasts/ubcSSf3DuGridFields1h.xml new file mode 100644 index 0000000..b9d2af1 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSf3DuGridFields1h.xml @@ -0,0 +1,202 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly + +Forecasted 3d zonal (u) component velocity field values averaged over 1 hour intervals +from the most recent SalishSeaCast NEMO model forecast run. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: uVelocity variable +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, 3d u Grid Variable Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted 3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSf3DuGridFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time + + + null + null + time_counter + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + depthu + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + X + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vozocrtx + uVelocity + float + + + Ocean Current Along x-axis + sea_water_x_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/rolling-forecasts/ubcSSf3DvGridFields1h.xml b/datasets/rolling-forecasts/ubcSSf3DvGridFields1h.xml new file mode 100644 index 0000000..ffc8ffd --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSf3DvGridFields1h.xml @@ -0,0 +1,201 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly + +Forecasted 3d meridional (v) component velocity field values averaged over 1 hour intervals +from the most recent SalishSeaCast NEMO model forecast run. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:30:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:30:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: vVelocity variable +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, 3d v Grid Variable Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted 3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSf3DvGridFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time + + + null + null + time_counter + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + depthv + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vomecrty + vVelocity + float + + + Ocean Current Along y-axis + sea_water_y_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/rolling-forecasts/ubcSSfBoundaryBaySSH10m.xml b/datasets/rolling-forecasts/ubcSSfBoundaryBaySSH10m.xml new file mode 100644 index 0000000..e0baf36 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfBoundaryBaySSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*BoundaryBay\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Boundary Bay, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Boundary Bay tide gauge station on a US boundary marker buoy, +south of Delta, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Boundary Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Boundary Bay from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfBoundaryBaySSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfCampbellRiverSSH10m.xml b/datasets/rolling-forecasts/ubcSSfCampbellRiverSSH10m.xml new file mode 100644 index 0000000..f1b392f --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfCampbellRiverSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*CampbellRiver\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Campbell River, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Campbell River tide gauge station at the north end of the Strait of Georgia, +near Campbell River, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Campbell River, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Campbell River from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfCampbellRiverSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfCherryPointSSH10m.xml b/datasets/rolling-forecasts/ubcSSfCherryPointSSH10m.xml new file mode 100644 index 0000000..15b8578 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfCherryPointSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*CherryPoint\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Cherry Point, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Cherry Point tide gauge station at the south end of the Strait of Georgia, +near Birch Bay, Washington. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Cherry Point, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Cherry Point from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfCherryPointSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfDepthAvgdCurrents1h.xml b/datasets/rolling-forecasts/ubcSSfDepthAvgdCurrents1h.xml new file mode 100644 index 0000000..ffe60e7 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfDepthAvgdCurrents1h.xml @@ -0,0 +1,225 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + .*CHS_currents\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + Grid + COARDS, CF-1.6, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, east, eastward, +eastward_sea_water_velocity_upper_10_grid_levels, +eastward_sea_water_velocity_upper_5_grid_levels, +north, northward, northward_sea_water_velocity_upper_10_grid_levels, +northward_sea_water_velocity_upper_5_grid_levels, +ocean, oceans, Oceans > Ocean Circulation > Ocean Currents, sea, seawater, time, +VelEast10, VelEast5, VelNorth10, VelNorth5, velocity, water + The SalishSeaCast NEMO model results are copyright + by the SalishSeaCast Project Contributors and The University of British Columbia. + + They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, Near-surface Depth Averaged Currents, 1h + +Rolling daily forecast of eastward and northward water current component field values averaged over 1 hour +intervals for the upper 5 and 10 metres of depth from SalishSeaCast NEMO model runs with physics and biology. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, +the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +The velocity component values are averaged over the upper 5 and 10 metre depths. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: VelEast10, VelEast5, VelNorth10, VelNorth5 variables; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, Near-surface Depth Averaged Currents, 1h + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted near-surface depth averaged water current component fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfDepthAvgdCurrents1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + + + time_counter + time + + + null + minutes since 1970-01-01T00:00:00Z + modelResult + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + gridY + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + gridX + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + VelEast10 + VelEast10 + float + + + null + 8.0 + -8.0 + currents + + + + VelNorth10 + VelNorth10 + float + + + null + 8.0 + -8.0 + currents + + + + VelNorth5 + VelNorth5 + float + + + null + 8.0 + -8.0 + currents + + + + VelEast5 + VelEast5 + float + + + null + 8.0 + -8.0 + currents + + + diff --git a/datasets/rolling-forecasts/ubcSSfFridayHarborSSH10m.xml b/datasets/rolling-forecasts/ubcSSfFridayHarborSSH10m.xml new file mode 100644 index 0000000..0bb5b47 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfFridayHarborSSH10m.xml @@ -0,0 +1,176 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*FridayHarbor\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Friday Harbor, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Friday Harbor tide gauge station in the San Juan Islands, +near Friday Harbor, Washington. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Friday Harbor, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Friday Harbor from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfFridayHarborSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfHalfmoonBaySSH10m.xml b/datasets/rolling-forecasts/ubcSSfHalfmoonBaySSH10m.xml new file mode 100644 index 0000000..ed3edc9 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfHalfmoonBaySSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*HalfmoonBay\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Halfmoon Bay, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Halfmoon Bay tide gauge station on the Sunshine Coast side of the Strait of Georgia, +near Halfmoon Bay, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Halfmoon Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Halfmoon Bay from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfHalfmoonBaySSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfNanaimoSSH10m.xml b/datasets/rolling-forecasts/ubcSSfNanaimoSSH10m.xml new file mode 100644 index 0000000..ebd8aa5 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfNanaimoSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*Nanaimo\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Nanaimo, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Nanaimo tide gauge station on the Vancouver Island side of the Strait of Georgia, +near Nanaimo, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Nanaimo, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Nanaimo from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfNanaimoSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfNeahBaySSH10m.xml b/datasets/rolling-forecasts/ubcSSfNeahBaySSH10m.xml new file mode 100644 index 0000000..5134f0f --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfNeahBaySSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*NeahBay\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Neah Bay, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Neah Bay tide gauge station on the south side of the western end of the Juan de Fuca Strait, +near Neah Bay, Washington. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Neah Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Neah Bay from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfNeahBaySSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfNewWestminsterSSH10m.xml b/datasets/rolling-forecasts/ubcSSfNewWestminsterSSH10m.xml new file mode 100644 index 0000000..1a4b2c9 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfNewWestminsterSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*NewWestminster\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, New Westminster, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the New Westminster tide gauge station in the lower Fraser River, +near New Westminster, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, New Westminster, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at New Westminster from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfNewWestminsterSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfPatriciaBaySSH10m.xml b/datasets/rolling-forecasts/ubcSSfPatriciaBaySSH10m.xml new file mode 100644 index 0000000..726e730 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfPatriciaBaySSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*PatriciaBay\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Patricia Bay, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Patricia Bay tide gauge station in Saanich Inlet, +near the Institute of Ocean Sciences and Victoria International Airport, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Patricia Bay, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Patricia Bay from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfPatriciaBaySSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfPointAtkinsonSSH10m.xml b/datasets/rolling-forecasts/ubcSSfPointAtkinsonSSH10m.xml new file mode 100644 index 0000000..03c605e --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfPointAtkinsonSSH10m.xml @@ -0,0 +1,178 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*PointAtkinson\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + https://salishsea-meopar-docs.readthedocs.io/en/latest/results_server/index.html#salish-sea-model-results + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Point Atkinson, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Point Atkinson tide gauge station on the north side of English Bay, +near Vancouver, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Point Atkinson, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Point Atkinson from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfPointAtkinsonSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfPortRenfrewSSH10m.xml b/datasets/rolling-forecasts/ubcSSfPortRenfrewSSH10m.xml new file mode 100644 index 0000000..add55fa --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfPortRenfrewSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*PortRenfrew\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Port Renfrew, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Port Renfrew tide gauge station on the north side of the western end of the Juan de Fuca Strait, +near Port Renfrew, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Port Renfrew, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Port Renfrew from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfPortRenfrewSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfSandHeadsSSH10m.xml b/datasets/rolling-forecasts/ubcSSfSandHeadsSSH10m.xml new file mode 100644 index 0000000..ad4ec31 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfSandHeadsSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*SandHeads\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Sand Heads, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Sand Heads tide gauge station near the mouth of the main arm of the Fraser River, +near Steveston, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Sand Heads, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Sand Heads from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfSandHeadsSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfSandyCoveSSH10m.xml b/datasets/rolling-forecasts/ubcSSfSandyCoveSSH10m.xml new file mode 100644 index 0000000..0379072 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfSandyCoveSSH10m.xml @@ -0,0 +1,176 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*SandyCove\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Sandy Cove, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Sandy Cove tide gauge station on the north side of English Bay, +near Vancouver, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Sandy Cove, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Sandy Cove from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfSandyCoveSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfSquamishSSH10m.xml b/datasets/rolling-forecasts/ubcSSfSquamishSSH10m.xml new file mode 100644 index 0000000..7739e26 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfSquamishSSH10m.xml @@ -0,0 +1,176 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*Squamish\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast model results are copyright +by the SalishSeaCast Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Squamish, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Squamish tide gauge station at the head of Howe Sound, +near Squamish, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Squamish, Sea Surface Height, 10min + SalishSeaCast Model + SalishSeaCast Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Squamish from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfSquamishSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + Time axis + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfSurfaceTracerFields1h.xml b/datasets/rolling-forecasts/ubcSSfSurfaceTracerFields1h.xml new file mode 100644 index 0000000..723fe94 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfSurfaceTracerFields1h.xml @@ -0,0 +1,173 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + deptht, grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Mixed Layer, +Oceans > Sea Surface Topography > Sea Surface Height, +mixed_depth, mixed_layer_depth, ocean_mixed_layer_thickness_defined_by_sigma_theta, +mixed layer depth (dsigma = 0.01 wrt 10m), +sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, +sossheig, time_counter, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Salish Sea, Surface Tracer Fields, Hourly +Rolling daily forecast of 2d sea surface height and mixed layer depth field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics and biology. The values are calculated for the surface of the model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v1: sea surface height and rainfall rate variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Deleted rainfall rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + Added mixed layer depth variable (dsigma = 0.01 wrt 10m) +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed mixed layer depth variable +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Salish Sea, Surface Tracer Fields, Hourly + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfSurfaceTracerFields1h. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + ocean surface T grid variables + + + time_counter + time + + + null + null + modelResult + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + sossheig + ssh + float + + Sea Surface Height + sea_surface_height_above_geoid + null + null + sea_level + -4.0 + 4.0 + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfVictoriaSSH10m.xml b/datasets/rolling-forecasts/ubcSSfVictoriaSSH10m.xml new file mode 100644 index 0000000..94cc188 --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfVictoriaSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*Victoria\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Victoria, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Victoria tide gauge station in Esquimalt Harbour, +near Victoria, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Forecast, Victoria, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Victoria from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfVictoriaSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/rolling-forecasts/ubcSSfWoodwardsLandingSSH10m.xml b/datasets/rolling-forecasts/ubcSSfWoodwardsLandingSSH10m.xml new file mode 100644 index 0000000..ae7bc4f --- /dev/null +++ b/datasets/rolling-forecasts/ubcSSfWoodwardsLandingSSH10m.xml @@ -0,0 +1,175 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/nemo/ + true + .*WoodwardsLanding\.nc$ + last + 20 + false + false + + + now+24hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + 10min, earth, geodetics, sea surface height above geoid, geoid, ocean, oceans, +Oceans > Sea Surface Topography > Sea Surface Height, +sea, sea_surface_height_above_geoid, +sossheig, ssh, surface, tides, time_counter, topography + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Forecast, Woodwards Landing, Sea Surface Height, 10min + +Rolling daily forecast of sea surface height values averaged over 10 minute intervals from +SalishSeaCast NEMO model runs with physics and biology. The values are calculated at the model grid point +closest to the Woodwards Landing tide gauge station in lower Fraser River, +on the south side of Richmond, British Columbia. +The time values are UTC. +They are the centres of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:05:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:55:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:05:00 UTC to 2017-11-12 11:55:00 UTC. + +v17-02: sea surface height variable; + NEMO-3.6; ubcSSnBathymetry2V17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetry2V17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +see infoUrl link for full details. + Forecast, Woodwards Landing, Sea Surface Height, 10min + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Forecasted sea surface height time series at Woodwards Landing from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSfWoodwardsLandingSSH10m. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 0:10 UTC 10 minute period on 2021-06-03 have a time value of 2021-06-03 00:05:00Z + time + modelResult + + + + nav_lon + longitude + + longitude + Longitude + null + null + -127.0 + -121.0 + modelResult + location + + + + nav_lat + latitude + + latitude + Latitude + null + null + 46.0 + 52.0 + modelResult + location + + + + sossheig + ssh + float + + + Sea Surface Height + sea_surface_height_above_geoid + null + null + 4.0 + -4.0 + null + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/ssc-nemo-201702/ubcSSg2DTracerFieldsSeasonalV17-02.xml b/datasets/ssc-nemo-201702/ubcSSg2DTracerFieldsSeasonalV17-02.xml new file mode 100644 index 0000000..ce08eb5 --- /dev/null +++ b/datasets/ssc-nemo-201702/ubcSSg2DTracerFieldsSeasonalV17-02.xml @@ -0,0 +1,194 @@ + + 10080 + 10000 + /results/SalishSea/climatology/ + .*seasonal_ts-30_\d{4}\.nc$ + true + .* + last + 20 + false + false + + + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity/Density > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 + +2d depth-averaged salinity and water temperature field values +averaged over 3 month seasonal intervals from SalishSeaCast NEMO model nowcast runs. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, +the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +The variable values are averaged over the upper 22 layers of the model grid, +approximately 0 to 30 metres depth. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details: + reference salinity and conservative temperature variables + + Green, Salish Sea, 2d Depth-averaged Tracer Fields, Seasonal, v17-02 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + over + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3 month seasonal-averaged 2d depth-averaged salinity and water temperature fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg2DTracerFieldsSeasonalV17-02. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + null + null + null + null + depth-averaged seasonal average T grid variables + + + time_counter + time + + + T + time + Time Axis + null + null + gregorian + seconds since 1900-01-01 00:00:00 + 1900-01-01 00:00:00 + UTC + time + modelResult + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; + geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; + geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vosalineoverdepth + salinity + float + + Depth-Averaged Reference Salinity + sea_water_reference_salinity + g kg-1 + null + null + null + salinity + 0.0 + 34.0 + modelResult + null + null + null + null + null + salinity + + + + votemperoverdepth + temperature + float + + Depth-Averaged Conservative Temperature + sea_water_conservative_temperature + degC + null + null + null + temperature + 4.0 + 20.0 + modelResult + null + null + null + null + null + temperature + + + diff --git a/datasets/ssc-nemo-201905/month-average/ubcSSg3DBiologyFields1moV19-05.xml b/datasets/ssc-nemo-201905/month-average/ubcSSg3DBiologyFields1moV19-05.xml new file mode 100644 index 0000000..26ba4e5 --- /dev/null +++ b/datasets/ssc-nemo-201905/month-average/ubcSSg3DBiologyFields1moV19-05.xml @@ -0,0 +1,527 @@ + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_ptrc_T\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, +Biological Classification > Protists > Diatoms, +biosphere, +Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, +chemistry, ciliates, concentration, depth, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, +flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, +mole_concentration_of_ammonium_in_sea_water, +mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, +mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, +Oceans > Ocean Chemistry > Ammonia, +Oceans > Ocean Chemistry > Nitrate, +Oceans > Ocean Chemistry > Nitrogen, +Oceans > Ocean Chemistry > Organic Matter, +Oceans > Ocean Chemistry > Silicate, +organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, +silicate, silicon, time, time_counter, tracer, water, zooplankton + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 + +3d SMELT biological model field values averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v19-05: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), + diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, + nitrate, particulate organic nitrogen, silicon. + Fraser River water turbidity tracer variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, SalishSeaCast, 3d Biology Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d SMELT biological model field values from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DBiologyFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. +Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. +J. Geophys. Res. Oceans, 121(3), 1600–1625. +https://dx.doi.org/10.1002/2015JC011118 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + +Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. +Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. +J. Geophys. Res. Oceans, 125(8). +https://doi.org/10.1029/2019JC015766 + + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + deptht + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + ammonium + ammonium + float + + + null + 5.0 + 0.0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + biogenic_silicon + biogenic_silicon + float + + + null + null + 0 + 70.0 + modelResult + null + null + null + null + null + dissolved_nutrients + + + + ciliates + ciliates + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + diatoms + diatoms + float + + + null + null + 0 + 20.0 + modelResult + null + null + null + null + null + biology + + + + dissolved_organic_nitrogen + dissolved_organic_nitrogen + float + + + null + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + flagellates + flagellates + float + + + null + 128.0 + 0.0 + null + modelResult + null + null + null + null + null + biology + + + + mesozooplankton + mesozooplankton + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + microzooplankton + microzooplankton + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + nitrate + nitrate + float + + + null + 40.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + particulate_organic_nitrogen + particulate_organic_nitrogen + float + + + null + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + silicon + silicon + float + + + null + 70.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + diff --git a/datasets/ssc-nemo-201905/month-average/ubcSSg3DTracerFields1moV19-05.xml b/datasets/ssc-nemo-201905/month-average/ubcSSg3DTracerFields1moV19-05.xml new file mode 100644 index 0000000..09dba9b --- /dev/null +++ b/datasets/ssc-nemo-201905/month-average/ubcSSg3DTracerFields1moV19-05.xml @@ -0,0 +1,217 @@ + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_T\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + depth, deptht, grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 + +3d salinity and water temperature field values averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v19-05: reference salinity, and conservative temperature variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, SalishSeaCast, 3d Tracer Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Temperature and salinity fields from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DTracerFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + deptht + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vosaline + salinity + float + + + Reference Salinity + null + 34.0 + 0.0 + null + modelResult + null + null + null + null + null + salinity + + + + votemper + temperature + float + + + Conservative Temperature + null + 20.0 + 4.0 + null + modelResult + null + null + null + null + null + temperature + + + diff --git a/datasets/ssc-nemo-201905/month-average/ubcSSg3DuGridFields1moV19-05.xml b/datasets/ssc-nemo-201905/month-average/ubcSSg3DuGridFields1moV19-05.xml new file mode 100644 index 0000000..65f863d --- /dev/null +++ b/datasets/ssc-nemo-201905/month-average/ubcSSg3DuGridFields1moV19-05.xml @@ -0,0 +1,185 @@ + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_U\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time, time_counter, u velocity component, velocity along x-axis, vozocrtx + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d zonal (u) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, +Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: uVelocity variable. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d u Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DuGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + depthu + depth + + + null + null + null + null + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vozocrtx + uVelocity + float + + + Ocean Current Along x-axis + sea_water_x_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/month-average/ubcSSg3DvGridFields1moV19-05.xml b/datasets/ssc-nemo-201905/month-average/ubcSSg3DvGridFields1moV19-05.xml new file mode 100644 index 0000000..87e4ddd --- /dev/null +++ b/datasets/ssc-nemo-201905/month-average/ubcSSg3DvGridFields1moV19-05.xml @@ -0,0 +1,185 @@ + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_V\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time, time_counter, v velocity component, velocity along y-axis, vomecrty + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d meridional (v) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: vVelocity variable. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d v Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DvGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + depthv + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vomecrty + vVelocity + float + + + Ocean Current Along y-axis + sea_water_y_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/month-average/ubcSSg3DwGridFields1moV19-05.xml b/datasets/ssc-nemo-201905/month-average/ubcSSg3DwGridFields1moV19-05.xml new file mode 100644 index 0000000..758f6ad --- /dev/null +++ b/datasets/ssc-nemo-201905/month-average/ubcSSg3DwGridFields1moV19-05.xml @@ -0,0 +1,288 @@ + + 10080 + 10000 + /results/SalishSea/month-avg.201905/ + true + .*SalishSea_1m_\d{6}_\d{6}_grid_W\.nc$ + last + 20 + false + false + + + now-36days + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, +Oceans > Ocean Circulation > Diffusion, +Oceans > Ocean Circulation > Ocean Currents, +Oceans > Ocean Circulation > Upwelling/Downwelling, +sea, seawater, time, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, +w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, +vovecrtz + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + +Variable values at the 3d vertical (w) component velocity grid points averaged over 1 month intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. +The values are calculated for the entire model grid that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v19-05: vVelocity, turbulent kinetic energy dissipation rate, vertical eddy diffusivity, vertical eddy viscosity variables. + NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d w Grid Variable Fields, Monthly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, ONC, Compute Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DwGridFields1moV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for January 2007 have a time value of 2007-01-16 12:00:00Z + time + + + + depthw + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + dissipation + dissipation + float + + + Turbulent Kinetic Energy Dissipation Rate + turbulent_kinetic_energy_dissipation_in_sea_water + null + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vert_eddy_diff + vert_eddy_diff + float + + + Vertical Eddy Diffusivity + ocean_vertical_heat_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vert_eddy_visc + vert_eddy_visc + float + + + Vertical Eddy Viscosity + ocean_vertical_momentum_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vovecrtz + wVelocity + float + + + Ocean Vertical Velocity + upward_sea_water_velocity + null + 0.5 + -0.5 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DAuxiliaryFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DAuxiliaryFields1hV19-05.xml new file mode 100644 index 0000000..5ea46d9 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DAuxiliaryFields1hV19-05.xml @@ -0,0 +1,294 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + .*SalishSea_1h_\d{8}_\d{8}_carp_T\.nc$ + true + .* + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + auxilary, cell_thickness, density, deptht, +downwelling_photosynthetic_photon_radiance_in_sea_water, e3t, +Oceans > Ocean Chemistry > Inorganic Matter, +Oceans > Ocean Optics > Photosynthetically Active Radiation, +Oceans > Ocean Optics > Radiance, +Oceans > Salinity/Density > Density, +Oceans > Marine Sediments > Suspended Solids, +Fraser_tracer, Fraser River, fraser_river_turbidity_tracer, ocean, oceans, optics, +PAR, photon, photosynthetic, photosynthetically, radiance, radiation, river, +sea, sea_water_sigma_theta, seawater, sediment, sediments, sigma, sigma0, sigma_theta, solids, suspended, +t-cell, thickness, time_counter, tracer, turbidity, water + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 + +3d auxiliary model field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology, and chemistry. +The values are calculated for the entire model grid that includes Juan de Fuca Strait, +he Strait of Georgia, Puget Sound, and Johnstone Strait on the coasts of +Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v19-05: Photosynthetically available radiation (PAR), Potential density anomaly (sigma_theta), + Time-varying z-layer thickness (NEMO e3t), Fraser River water turbidity. + NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + Green, Salish Sea, 3d Auxiliary Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Potential density anomaly (sigma_theta) field from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DAuxiliaryFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + null + + + time_counter + time + + + null + null + time_counter + seconds since 1900-01-01T00:00:00Z + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + deptht + depth + + + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + PAR + PAR + float + + + Photosynthetically Available Radiation + 350.0 + 0.0 + null + downwelling_photosynthetic_radiative_flux_in_sea_water + modelResult + null + null + null + null + null + optical_properties + + + + sigma_theta + sigma_theta + float + + + Potential Density Anomaly + 26.0 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography + + + + e3t + e3t + float + + + Time-Varying z-Layer Thickness + null + 0.0 + 30.0 + modelResult + null + null + null + null + null + numerics + + + + Fraser_tracer + fraserTurbidity + float + + + Fraser River Turbidity + null + 0.0 + 30.0 + modelResult + null + null + null + null + null + optical_properties + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DBiologyFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DBiologyFields1hV19-05.xml new file mode 100644 index 0000000..2f49a85 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DBiologyFields1hV19-05.xml @@ -0,0 +1,532 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_ptrc_T\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + ammonia, ammonium, aquatic, biogenic, biogenic_silicon, biological, +Biological Classification > Protists > Diatoms, +biosphere, +Biosphere > Aquatic Ecosystems > Plankton > Zooplankton, +chemistry, ciliates, concentration, deptht, detritus, diatoms, dissolved, dissolved_organic_nitrogen, ecosystems, +flagellates, marine, mesodinium rubrum, mesozooplankton, microzooplankton, +mole_concentration_of_ammonium_in_sea_water, +mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesodinium_rubrum_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_nitrate_in_sea_water, mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water, +mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water, +mole_concentration_of_silicate_in_sea_water, n02, nh4, nitrate, nitrogen, no3, ocean, oceans, +Oceans > Ocean Chemistry > Ammonia, +Oceans > Ocean Chemistry > Nitrate, +Oceans > Ocean Chemistry > Nitrogen, +Oceans > Ocean Chemistry > Organic Matter, +Oceans > Ocean Chemistry > Silicate, +organic, particulate, particulate_organic_nitrogen, plankton, protists, river, sea, seawater, +silicate, silicon, time_counter, tracer, water, zooplankton + + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 + +3d SMELT biological model field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v17-02: Micromolar concentrations of ammonium, biogenic silicon, ciliates (mesodinium rubrum), + diatoms, dissolved organic nitrogen, flagellates (nanophytoplankton), mesozooplankton, microzooplankton, + nitrate, particulate organic nitrogen, silicon. + Fraser River water turbidity tracer. + NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d Biology Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d SMELT biological model field values from the SalishSeaCast NEMO model +(Soontiens et al, 2016; Moore-Maley et al, 2016; Soontiens and Allen, 2017, Olson et al, 2020) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DBiologyFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Moore-Maley, B. L., Allen, S. E., and IansonD., 2016. +Locally-driven interannual variability of near-surface pH and ΩA in the Strait of Georgia. +J. Geophys. Res. Oceans, 121(3), 1600–1625. +https://dx.doi.org/10.1002/2015JC011118 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + +Olson, E. M., Allen, S. E., Do, Vy, Dunphy, M., and Ianson, D., 2020. +Assessment of Nutrient Supply by a Tidal Jet in the Northern Strait of Georgia Based on a Biogeochemical Model. +J. Geophys. Res. Oceans, 125(8). +https://doi.org/10.1029/2019JC015766 + + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + deptht + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + ammonium + ammonium + float + + + null + 5.0 + 0.0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + biogenic_silicon + biogenic_silicon + float + + + null + null + 0 + 70.0 + modelResult + null + null + null + null + null + dissolved_nutrients + + + + ciliates + ciliates + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + diatoms + diatoms + float + + + null + null + 0 + 20.0 + modelResult + null + null + null + null + null + biology + + + + dissolved_organic_nitrogen + dissolved_organic_nitrogen + float + + + null + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + flagellates + flagellates + float + + + null + 128.0 + 0.0 + null + modelResult + null + null + null + null + null + biology + + + + mesozooplankton + mesozooplankton + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + microzooplankton + microzooplankton + float + + + null + null + modelResult + null + null + null + null + null + biology + + + + nitrate + nitrate + float + + + null + 40.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + particulate_organic_nitrogen + particulate_organic_nitrogen + float + + + null + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + + silicon + silicon + float + + + null + 70.0 + 0 + null + modelResult + null + null + null + null + null + dissolved_nutrients + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DTracerFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DTracerFields1hV19-05.xml new file mode 100644 index 0000000..ff03dc0 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DTracerFields1hV19-05.xml @@ -0,0 +1,227 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + deptht, grid, ocean, oceans, +Oceans > Ocean Temperature > Conservative Temperature, +Oceans > Salinity, +reference salinity, sea water, sea_water_conservative_temperature, sea_water_reference_salinity, seawater, +conservative temperature, time_counter, vosaline, votemper, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 + +3d salinity and water temperature field values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v1: salinity (practical) and temperature variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Changed salinity variable to reference salinity. + Changed temperature variable to conservative temperature. + Added squared buoyancy frequency variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed squared buoyancy frequency variable. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d Tracer Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Temperature and salinity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DTracerFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + deptht + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vosaline + salinity + float + + + Reference Salinity + null + 34.0 + 0.0 + null + modelResult + null + null + null + null + null + salinity + + + + votemper + temperature + float + + + Conservative Temperature + null + 20.0 + 4.0 + null + modelResult + null + null + null + null + null + temperature + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DuGridFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DuGridFields1hV19-05.xml new file mode 100644 index 0000000..0c163d2 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DuGridFields1hV19-05.xml @@ -0,0 +1,191 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_U\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthu, u grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_x_velocity, seawater, time_counter, u velocity component, velocity along x-axis, vozocrtx + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 + +Variable values at the 3d zonal (u) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v1: uVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d u Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d zonal (u) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DuGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + depthu + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vozocrtx + uVelocity + float + + + Ocean Current Along x-axis + sea_water_x_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DvGridFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DvGridFields1hV19-05.xml new file mode 100644 index 0000000..09d2293 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DvGridFields1hV19-05.xml @@ -0,0 +1,191 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_V\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, current, currents, depthv, v grid, ocean, oceans, +Oceans > Ocean Circulation > Ocean Currents, +sea, sea_water_y_velocity, seawater, time_counter, v velocity component, velocity along y-axis, vomecrty + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 + +Variable values at the 3d meridional (v) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v1: vVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d v Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d meridional (v) component velocity fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DvGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + depthv + depth + + + null + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + vomecrty + vVelocity + float + + + Ocean Current Along y-axis + sea_water_y_velocity + null + 8.0 + -8.0 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/ubcSSg3DwGridFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSg3DwGridFields1hV19-05.xml new file mode 100644 index 0000000..947da53 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSg3DwGridFields1hV19-05.xml @@ -0,0 +1,295 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_W\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + circulation, currents, depthw, vertical eddy diffusivity, downwelling, w grid, ocean, oceans, +Oceans > Ocean Circulation > Diffusion, +Oceans > Ocean Circulation > Ocean Currents, +Oceans > Ocean Circulation > Upwelling/Downwelling, +sea, seawater, time_counter, turbulent kinetic energy dissipation rate, upward, upward_sea_water_velocity, upwelling, +w velocity component, velocity along z-axis, vert_eddy_diff, vert_eddy_visc, vertical eddy viscosity, +vovecrtz + GCMD Science Keywords + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 + +Variable values at the 3d vertical (w) component velocity grid points averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the entire model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetryV17-02 dataset. + +v1: wVelocity variable +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Renamed eddy viscosity & diffusivity variables to vert_eddy_visc & vert_eddy_diff + Added turbulent kinetic energy dissipation rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, 3d w Grid Variable Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +3d vertical (w) component velocity and turbulence fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSg3DwGridFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + + + time_counter + time + + + null + null + modelResult + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + depthw + depth + + + null + null + null + Depth + depth + modelResult + location + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + dissipation + dissipation + float + + + Turbulent Kinetic Energy Dissipation Rate + turbulent_kinetic_energy_dissipation_in_sea_water + null + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vert_eddy_diff + vert_eddy_diff + float + + + Vertical Eddy Diffusivity + ocean_vertical_heat_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vert_eddy_visc + vert_eddy_visc + float + + + Vertical Eddy Viscosity + ocean_vertical_momentum_diffusivity + null + 0.1 + 0.0 + null + modelResult + null + null + null + null + null + physical_oceanography + + + + vovecrtz + wVelocity + float + + + Ocean Vertical Velocity + upward_sea_water_velocity + null + 0.5 + -0.5 + null + modelResult + null + null + null + null + null + currents + + + diff --git a/datasets/ssc-nemo-201905/ubcSSgSurfaceTracerFields1hV19-05.xml b/datasets/ssc-nemo-201905/ubcSSgSurfaceTracerFields1hV19-05.xml new file mode 100644 index 0000000..f411225 --- /dev/null +++ b/datasets/ssc-nemo-201905/ubcSSgSurfaceTracerFields1hV19-05.xml @@ -0,0 +1,159 @@ + + 10080 + 10000 + /results2/SalishSea/nowcast-green.201905/ + true + .*SalishSea_1h_\d{8}_\d{8}_grid_T\.nc$ + last + 20 + false + false + + + now-16hours + Grid + CF-1.6, COARDS, ACDD-1.3 + https://salishsea.eos.ubc.ca/ + UBC EOAS + Earth, Ocean & Atmospheric Sciences, University of British Columbia + deptht, grid, ocean, oceans, +Oceans > Ocean Circulation > Sea Surface Topography > Sea Surface Height, +sea surface height, sea_surface_height_above_geoid, sea water, seawater, ssh, +sossheig, time_counter, water + The SalishSeaCast NEMO model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + CF Standard Name Table v29 + Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 + +2d sea surface height values averaged over 1 hour intervals +from SalishSeaCast NEMO model runs with physics, biology and chemistry. The values are calculated for the surface of the model grid +that includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound, +and Johnstone Strait on the coasts of Washington State and British Columbia. +The time values are UTC. +They are the centre of the intervals over which the calculated model results are averaged; +e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z. +Geo-location and depth data for the SalishSeaCast NEMO model grid are available in the ubcSSnBathymetry2V17-02 dataset. + +v1: sea surface height and rainfall rate variables +v16-10: NEMO-3.6; ubcSSnBathymetry2V16-07 bathymetry; see infoUrl link for full details. + Deleted rainfall rate variable. +v17-02: NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + Added mixed layer depth variable (dsigma = 0.01 wrt 10m) +v18-06: NEMO-3.6 SalishSeaCast-201806 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + Removed mixed layer depth variable +v18-12: NEMO-3.6 SalishSeaCast-201812 configuration; changed biology; + see infoUrl link for full details. +v19-05: NEMO-3.6 SalishSeaCast-201905 configuration; ubcSSnBathymetryV17-02 bathymetry; + see infoUrl link for full details. + + Green, Salish Sea, Surface Tracer Fields, Hourly, v19-05 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + sallen@eoas.ubc.ca + https://salishsea-meopar-docs.readthedocs.io/ + MEOPAR, Ocean Networks Canada (ONC), Digital Research Alliance of Canada + If you use this dataset in your research, +please reference it with wording similar to the example below, +and include citations of the publications below. +Inclusion of the date(s) when you downloaded the dataset, +and the dataset id help to ensure reproducibility of your work. + +Reference wording: + +Sea surface height fields from the SalishSeaCast model +(Soontiens et al, 2016; Soontiens and Allen, 2017) +were downloaded from their ERDDAP server +(https://salishsea.eos.ubc.ca/erddap/) +on DATE from dataset ubcSSgSurfaceTracerFields1hV19-05. + +Citations: + +Soontiens, N., Allen, S., Latornell, D., Le Souef, K., Machuca, I., Paquin, J.-P., Lu, Y., Thompson, K., Korabel, V., 2016. +Storm surges in the Strait of Georgia simulated with a regional model. Atmosphere-Ocean 54 1-21. +https://dx.doi.org/10.1080/07055900.2015.1108899 + +Soontiens, N. and Allen, S., 2017. +Modelling sensitivities to mixing and advection in a sill-basin estuarine system. Ocean Modelling, 112, 17-32. +https://dx.doi.org/10.1016/j.ocemod.2017.02.008 + over + null + null + null + ocean surface T grid variables + + + time_counter + time + + + null + null + modelResult + UTC + time values are UTC at the centre of the intervals over which the calculated model results are averaged; e.g. the field average values for the 00:00 to 01:00 UTC hour on 2021-06-03 have a time value of 2021-06-03 00:30:00Z + time + + + + y + gridY + + + Grid Y + y + modelResult + gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + x + gridX + + + Grid X + x + modelResult + gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry2V17-02 dataset. + location + + + + sossheig + ssh + float + + Sea Surface Height + sea_surface_height_above_geoid + null + null + -4.0 + 4.0 + modelResult + null + null + null + null + null + sea_level + + + diff --git a/datasets/wwatch3/ubcSSWaveWatch3-SoGFilesV17-02.xml b/datasets/wwatch3/ubcSSWaveWatch3-SoGFilesV17-02.xml new file mode 100644 index 0000000..233671c --- /dev/null +++ b/datasets/wwatch3/ubcSSWaveWatch3-SoGFilesV17-02.xml @@ -0,0 +1,102 @@ + + /opp/wwatch3/ + /opp/wwatch3/(|nowcast/.*|most_recent_forecast/) + .*SoG_ww3_.*\.nc$ + true + 10080 + + + now+24hours + Grid + (local files) + fileType + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + model results, file, identifier, lastModified, modified, name, size, time + The SalishSeaCast model results are copyright +by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + Files, WAVEWATCH III®, Strait of Georgia, V17-02 + Files, WAVEWATCH III®, Strait of Georgia, V17-02 + +2d wave field values from the Strait of Georgia WaveWatch III® model runs. +The values are calculated for a model grid that covers the Strait of Georgia +on the coast of British Columbia. The time values are UTC. + +The Strait of Georgia WaveWatch III® model grid and configuration were developed +by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model +is forced with currents from the SalishSeaCast NEMO model and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. + +v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + SalishSeaCast Project Contributors + gemmrish@uvic.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans CanadaCast, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada + null + + + url + url + String + + + + + + name + name + String + + + + + + lastModified + lastModified + double + + + + + + size + size + double + + + + + + fileType + fileType + String + + .*(\..+?) + 1 + Identifier + File Type + + + diff --git a/datasets/wwatch3/ubcSSf2DWaveFields30mV17-02.xml b/datasets/wwatch3/ubcSSf2DWaveFields30mV17-02.xml new file mode 100644 index 0000000..4ec7f6e --- /dev/null +++ b/datasets/wwatch3/ubcSSf2DWaveFields30mV17-02.xml @@ -0,0 +1,598 @@ + + 10080 + 10000 + /results/SalishSea/rolling-forecasts/ + .*SoG_ww3_fields_\d{8}_\d{8}\.nc$ + true + .* + last + 20 + false + false + + + now+24hours + null + Grid + CF-1.6, COARDS, ACDD-1.3 + null + https://salishsea.eos.ubc.ca/ + UBC EOAS & DFO IOS + Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia, + Fisheries and Oceans Canada, Institute of Ocean Sciences + atmosphere, +Atmosphere &gt; Atmospheric Winds &gt; Surface Winds, +atmospheric, breaking wave height, circulation, currents, direction, drift, +eastward_sea_water_velocity, eastward_surface_stokes_drift, eastward_wave_to_ocean_stress, eastward_wind, +energy, flux, foc, frequency, height, latitude, length, local, longitude, mean, mean_wave_length, moment, +northward, northward_sea_water_velocity, northward_surface_stokes_drift, northward_wave_to_ocean_stress, northward_wind, ocean, oceans, +Oceans &gt; Ocean Circulation &gt; Ocean Currents, +Oceans &gt; Ocean Waves &gt; Significant Wave Height, +Oceans &gt; Ocean Waves &gt; Wave Frequency, +Oceans &gt; Ocean Waves &gt; Wave Period, +Oceans &gt; Ocean Waves &gt; Wave Spectra, +Oceans &gt; Ocean Waves &gt; Wave Speed/Direction, +Oceans &gt; Ocean Waves &gt; Wind Waves, +peak, period, sea, sea_surface_wave_from_direction, sea_surface_wave_peak_direction, sea_surface_wave_peak_frequency, +sea_surface_wave_significant_height, sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment, +seawater, second, significant, significant_breaking_wave_height, source, spectra, spectral, speed, stokes, stress, surface, +swell, t02, time, ucur, utwo, uuss, uwnd, variance, vcur, velocity, vtwo, vuss, vwnd, water, wave, wave_to_ocean_energy_flux, +waves, wcc, wch, whitecap coverage, whitecap_coverage, wind, winds + GCMD Science Keywords + null + The SalishSeaCast model results are copyright by the SalishSeaCast Project Contributors and The University of British Columbia. + +They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0 + null + null + null + null + null + null + null + CF Standard Name Table v29 + null + null + Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 + +Rolling daily forecast of 2d wave field values calculated at 30 minute intervals +from the most recent Strait of Georgia WaveWatch III® model forecast runs. +The values are calculated for a model grid that covers the Strait of Georgia +on the coast of British Columbia. The time values are UTC. + +The Strait of Georgia WaveWatch III® model grid and configuration were developed +by Johannes Gemmrich at the University of Victoria. The WaveWatch III® model +is forced with currents from the SalishSeaCast NEMO model and the same ECCC HRDPS +GEM 2.5km resolution winds that are used to force the NEMO model. + +This dataset is updated daily to move it forward 1 day in time. +It starts at 00:00:00 UTC 5 days prior to the most recently completed forecast run, +and extends to 11:30:00 UTC on the 2nd day after the forecast run date. +So, for example, after completion of the 10-Nov-2017 forecast run, +this dataset included data from 2017-11-05 00:00:00 UTC to 2017-11-12 11:30:00 UTC. + +v17-02: WaveWatch III® v5.16; NEMO-3.6; ubcSSnBathymetryV17-02 bathymetry; see infoUrl link for full details. + + Forecast, Salish Sea, 2d Wave Fields, 30min, v17-02 + SalishSeaCast NEMO Model + SalishSeaCast Project Contributors + gemmrich@uvic.ca + https://salishsea-meopar-docs.readthedocs.io/ + Fisheries & Oceans CanadaCast, +Ocean Networks Canada (ONC), +Digital Research Alliance of Canada + over + null + null + null + null + + + time + time + + + modelResult + Julian Day (UT) + time values are UTC + null + + + + latitude + latitude + + + modelResult + Latitude + degrees_north + null + + + + longitude + longitude + + + modelResult + Longitude + degrees_east + null + + + + ucur + ucur + float + + + modelResult + Eastward Current + 0.5 + -0.5 + null + null + null + + + + vcur + vcur + float + + + Northward Current + 0.5 + -0.5 + null + null + null + + + + uwnd + uwnd + float + + + Eastward Wind + 15.0 + -15.0 + null + null + null + + + + vwnd + vwnd + float + + + Northward Wind + 15.0 + -15.0 + null + null + null + + + + hs + hs + float + + + Significant Height of Wind Waves + 2.0 + 0.0 + null + null + null + + + + lm + lm + float + + + Mean Wave Length + 4000.0 + 0.0 + null + null + null + + + + t02 + t02 + float + + + Mean Period T02 + 50.0 + 0.0 + null + null + null + + + + fp + fp + float + + + Wave Peak Frequency + 15000.0 + 0.0 + null + null + null + + + + dir + dir + float + + + Wave Mean Direction + 360.0 + 0.0 + null + null + null + + + + dp + dp + float + + + Peak Direction + 360.0 + 0.0 + null + null + null + + + + wcc + wcc + float + + + Whitecap Coverage + 1.0 + 0.0 + null + null + null + + + + wch + wch + float + + + Significant Breaking Wave Height + 4.0 + 0.0 + null + null + null + + + + utwo + utwo + float + + + Eastward Wave to Ocean Stress + 40000.0 + -40000.0 + null + null + null + + + + vtwo + vtwo + float + + + Northward Wave to Ocean Stress + 40000.0 + -40000.0 + null + null + null + + + + foc + foc + float + + + Wave to Ocean Energy Flux + 12000.0 + 0.0 + null + null + null + + + + uuss + uuss + float + + + Eastward Surface Stokes Drift + 15000.0 + -15000.0 + null + null + null + + + + vuss + vuss + float + + + Northward Surface Stokes Drift + 15000.0 + -15000.0 + null + null + null + + + diff --git a/environment.yaml b/environment.yaml deleted file mode 100644 index f261422..0000000 --- a/environment.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# conda environment description -# -# Use: -# -# conda env create -f environment.yaml -# -# to create an environment in which you can run the ERDDAP_datasets notebook. - -name: erddap-datasets - -channels: - - conda-forge - - defaults - -dependencies: - - bottleneck - - jupyterlab - - lxml - - netcdf4 - - nodejs - - pip - - python=3 - - xarray - -# after creating the environment install extensions: -# -# jupyter labextension install @jupyterlab/toc -# -# jupyter labextension install @ryantam626/jupyterlab_code_formatter -# conda install -c conda-forge jupyterlab_code_formatter -# jupyter serverextension enable --py jupyterlab_code_formatter diff --git a/envs/environment-dev.yaml b/envs/environment-dev.yaml new file mode 100644 index 0000000..6f5846f --- /dev/null +++ b/envs/environment-dev.yaml @@ -0,0 +1,24 @@ +# conda environment description erddap-datasets dev environment +# +# Use: +# +# conda env create -f envs/environment-dev.yaml + +name: erddap-datasets-dev + +channels: + - conda-forge + - nodefaults + +dependencies: + - bottleneck + - docutils + - jupyterlab + - lxml + - netcdf4 + - pip + - python=3.12 + - pyyaml + - rich + - structlog + - xarray diff --git a/envs/environment-test.yaml b/envs/environment-test.yaml new file mode 100644 index 0000000..329c6c9 --- /dev/null +++ b/envs/environment-test.yaml @@ -0,0 +1,18 @@ +# conda environment description file for Serddap-datasets testing environment +# +# Creates a conda environment in which the check_datasets_xml module can be run. +# Primarily intended for creation of a conda env for use in a GitHub Actions workflow. + +name: erddap-datasets-test + +channels: + - conda-forge + - nodefaults + +dependencies: + - lxml + - pip + - python=3.12 + - pyyaml + - rich + - structlog diff --git a/envs/requirements.txt b/envs/requirements.txt new file mode 100644 index 0000000..9f81f00 --- /dev/null +++ b/envs/requirements.txt @@ -0,0 +1,120 @@ +# Python packages and versions used in recent development environment +# +# Create/update this file with: +# (erddap-datasets-dev)$ python -m pip list --format=freeze >> envs/requirements.txt + +anyio==4.0.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +async-lru==2.0.4 +attrs==23.1.0 +Babel==2.13.1 +backports.functools-lru-cache==1.6.5 +beautifulsoup4==4.12.2 +bleach==6.1.0 +Bottleneck==1.3.7 +Brotli==1.1.0 +cached-property==1.5.2 +certifi==2023.7.22 +cffi==1.16.0 +cftime==1.6.3 +charset-normalizer==3.3.2 +comm==0.1.4 +debugpy==1.8.0 +decorator==5.1.1 +defusedxml==0.7.1 +entrypoints==0.4 +exceptiongroup==1.1.3 +executing==2.0.1 +fastjsonschema==2.18.1 +fqdn==1.5.1 +idna==3.4 +importlib-metadata==6.8.0 +importlib-resources==6.1.0 +ipykernel==6.26.0 +ipython==8.17.2 +isoduration==20.11.0 +jedi==0.19.1 +Jinja2==3.1.2 +json5==0.9.14 +jsonpointer==2.4 +jsonschema==4.19.2 +jsonschema-specifications==2023.7.1 +jupyter_client==8.6.0 +jupyter_core==5.5.0 +jupyter-events==0.9.0 +jupyter-lsp==2.2.0 +jupyter_server==2.10.0 +jupyter_server_terminals==0.4.4 +jupyterlab==4.0.8 +jupyterlab-pygments==0.2.2 +jupyterlab_server==2.25.0 +lxml==4.9.3 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +matplotlib-inline==0.1.6 +mdurl==0.1.0 +mistune==3.0.2 +nbclient==0.8.0 +nbconvert==7.11.0 +nbformat==5.9.2 +nest-asyncio==1.5.8 +netCDF4==1.6.5 +notebook_shim==0.2.3 +numpy==1.26.0 +overrides==7.4.0 +packaging==23.2 +pandas==2.1.2 +pandocfilters==1.5.0 +parso==0.8.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pip==23.3.1 +pkgutil_resolve_name==1.3.10 +platformdirs==3.11.0 +prometheus-client==0.18.0 +prompt-toolkit==3.0.39 +psutil==5.9.5 +ptyprocess==0.7.0 +pure-eval==0.2.2 +pycparser==2.21 +Pygments==2.16.1 +PySocks==1.7.1 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==25.1.1 +referencing==0.30.2 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986-validator==0.1.1 +rich==13.6.0 +rpds-py==0.12.0 +Send2Trash==1.8.2 +setuptools==68.2.2 +six==1.16.0 +sniffio==1.3.0 +soupsieve==2.5 +stack-data==0.6.2 +structlog==23.2.0 +terminado==0.17.1 +tinycss2==1.2.1 +tomli==2.0.1 +tornado==6.3.3 +traitlets==5.13.0 +types-python-dateutil==2.8.19.14 +typing_extensions==4.8.0 +typing-utils==0.1.0 +tzdata==2023.3 +uri-template==1.3.0 +urllib3==2.0.7 +wcwidth==0.2.9 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.6.4 +wheel==0.41.3 +xarray==2023.10.1 +zipp==3.17.0 diff --git a/setup.xml b/setup.xml index 3ce09ce..4fb2afb 100755 --- a/setup.xml +++ b/setup.xml @@ -49,8 +49,8 @@ You MUST CHANGE these to the appropriate browser administrator for your site. Whether or not you set up the email system, all potential email messages are logged to an emailLogYEAR-MONTH.txt file in [bigParentDirectory]/logs/. --> -ckrzysik@eos.ubc.ca,dlatornell@eoas.ubc.ca -ckrzysik@eos.ubc.ca +dlatornell@eoas.ubc.ca +dlatornell@eoas.ubc.ca EOAS UBC https://www.eoas.ubc.ca -Charles Krzysik EOAS Systems Analyst +Doug Latornell ERDDAP administrator -604 822 9110 -113M-6339 Stores Rd +604 822 2449 +2020 – 2207 Main Mall Vancouver BC V6T1Z4 Canada -ckrzysik@eos.ubc.ca +dlatornell@eoas.ubc.ca